提交 bd9a8605 编写于 作者: R Robby Russell

Merge pull request #1247 from drnic/git-cmds

Added 'gcl'for 'git config --list'; and gd for 'git diff'
...@@ -9,6 +9,7 @@ alias gup='git pull --rebase' ...@@ -9,6 +9,7 @@ alias gup='git pull --rebase'
compdef _git gup=git-fetch compdef _git gup=git-fetch
alias gp='git push' alias gp='git push'
compdef _git gp=git-push compdef _git gp=git-push
alias gd='git diff'
gdv() { git diff -w "$@" | view - } gdv() { git diff -w "$@" | view - }
compdef _git gdv=git-diff compdef _git gdv=git-diff
alias gc='git commit -v' alias gc='git commit -v'
...@@ -24,6 +25,7 @@ alias gba='git branch -a' ...@@ -24,6 +25,7 @@ alias gba='git branch -a'
compdef _git gba=git-branch compdef _git gba=git-branch
alias gcount='git shortlog -sn' alias gcount='git shortlog -sn'
compdef gcount=git compdef gcount=git
alias gcl='git config --list'
alias gcp='git cherry-pick' alias gcp='git cherry-pick'
compdef _git gcp=git-cherry-pick compdef _git gcp=git-cherry-pick
alias glg='git log --stat --max-count=5' alias glg='git log --stat --max-count=5'
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册