Skip to content

Commit

Permalink
Merge pull request ohmyzsh#663 from gravof/patch-1
Browse files Browse the repository at this point in the history
Replace "git-diff" with "git diff" in the git plugin
  • Loading branch information
eddorre committed Jan 26, 2012
2 parents 512a6e5 + 7553d01 commit 9d92987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/git/git.plugin.zsh
Expand Up @@ -9,7 +9,7 @@ alias gup='git fetch && git rebase'
compdef _git gup=git-fetch
alias gp='git push'
compdef _git gp=git-push
gdv() { git-diff -w "$@" | view - }
gdv() { git diff -w "$@" | view - }
compdef _git gdv=git-diff
alias gc='git commit -v'
compdef _git gc=git-commit
Expand Down

0 comments on commit 9d92987

Please sign in to comment.