Преглед изворни кода

Fix `glp` not working on Git 1.7.1

Strangely enough, `--patch` did not exist, even though `-p` did.
Weiyi Lou пре 10 година
родитељ
комит
de878373e5
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      zsh/custom/git.zsh

+ 1 - 1
zsh/custom/git.zsh

@@ -48,7 +48,7 @@ alias gl='git log --graph --date=short --pretty='$GIT_LOG_FORMAT # log with trai
 alias gla='gl --all' # show all refs, not just current branch history.
 alias glb='gl --simplify-by-decoration' # concise branch and tag log.
 alias glh='gl --max-count=15'
-alias glp='git log --graph --decorate --patch'
+alias glp='git log --graph --decorate -p'
 alias gls='git log --graph --decorate --stat'
 alias gr='git reset'
 alias grh='git reset --hard'