diff options
author | Robby Russell <robby@planetargon.com> | 2014-08-31 12:10:04 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-08-31 12:10:04 -0700 |
commit | 99fde07b8fb9279d99f0134710ce22d77f11ebc7 (patch) | |
tree | 3f861c748cef98b704d0a0da0d94eda0e55ec252 | |
parent | 1f9b24e56bb7a5f903a570435881b16b6ecc6d1c (diff) | |
parent | 4f1ee6c1eed04345c458458006a15381d35d8080 (diff) | |
download | zsh-99fde07b8fb9279d99f0134710ce22d77f11ebc7.tar.gz zsh-99fde07b8fb9279d99f0134710ce22d77f11ebc7.tar.bz2 zsh-99fde07b8fb9279d99f0134710ce22d77f11ebc7.zip |
Merge pull request #3000 from bigtiger/add-git-add-patch
Add gap (git add --patch)
-rw-r--r-- | plugins/git/git.plugin.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 0c5622c24..4b5ddf44c 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -73,6 +73,7 @@ alias gss='git status -s' compdef _git gss=git-status alias ga='git add' compdef _git ga=git-add +alias gap='git add --patch' alias gm='git merge' compdef _git gm=git-merge alias grh='git reset HEAD' |