mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-30 02:44:42 +01:00
Merge a22518fd9a into 86a889ea08
This commit is contained in:
commit
a1275aaeaf
1 changed files with 8 additions and 3 deletions
|
|
@ -7,11 +7,14 @@ alias gd='git diff'
|
|||
compdef _git gd=git-diff
|
||||
alias gl='git pull'
|
||||
compdef _git gl=git-pull
|
||||
alias gch='git fetch'
|
||||
compdef _git gch=git-fetch
|
||||
alias gup='git pull --rebase'
|
||||
compdef _git gup=git-fetch
|
||||
alias gp='git push'
|
||||
compdef _git gp=git-push
|
||||
alias gd='git diff'
|
||||
alias gd='git diff --color'
|
||||
compdef _git gd=git-diff
|
||||
gdv() { git diff -w "$@" | view - }
|
||||
compdef _git gdv=git-diff
|
||||
alias gc='git commit -v'
|
||||
|
|
@ -46,9 +49,11 @@ compdef gcount=git
|
|||
alias gcl='git config --list'
|
||||
alias gcp='git cherry-pick'
|
||||
compdef _git gcp=git-cherry-pick
|
||||
alias glg='git log --stat --max-count=5'
|
||||
alias glg='git log --stat --color'
|
||||
compdef _git glg=git-log
|
||||
alias glgg='git log --graph --max-count=5'
|
||||
alias glgp='git log --stat --color -p'
|
||||
compdef _git glgp=git-log
|
||||
alias glgg='git log --graph --color'
|
||||
compdef _git glgg=git-log
|
||||
alias glgga='git log --graph --decorate --all'
|
||||
compdef _git glgga=git-log
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue