2016-03-14

oh-my-zsh 預設的 git plugin

自從 bash 有一陣子 security 接連出問題之後,
我給了 z-shell 一次機會,而 oh-my-zsh 很快的就成為我的好朋友
不過直到最近才注意到 .zshrc 裡面的預設的

    plugins=(git)

提供的 git alias 還挺方便的,可以省去很多打字的麻煩

可以用

    alias | grep git 

來查看全部

順便紀錄當中幾個比較好用的縮寫有

  • git status 相關
    • gst
      • git status
    • gss
      • git status -sb
  • git diff 相關
    • gd
      • git diff
    • gdca
      • git diff --cached
  • git log 相關
    • glg
      • git log --stat --color
    • glgp
      • git log --stat --color -p
    • glol
      • git log --oneline --decorate --color --graph

2 則留言:

  1. OH-MY-ZSH超好用的,分享的的PLUGINS:
    plugins=( \
    aliases \
    colored-man \
    colorize \
    common-aliases \
    cp \
    dircycle \
    acroread \
    history \
    screen \
    yum \
    z \
    virtualenv \
    )

    -黃大灰

    回覆刪除
  2. Thanks!!
    我今天也有看一下 oh-my-zsh 底下的 plugins 目錄附帶的一些預設 plugin,有些寫的真的是不錯~

    回覆刪除

Configuring HAProxy as a proxy for Cargo

Configuring HAProxy as a proxy for Cargo (the Rust package manager) in a corporate network environment involves several steps. Here's a ...