diff options
author | Robby Russell <robby@planetargon.com> | 2011-12-26 10:02:09 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-12-26 10:02:09 -0800 |
commit | f8db2e88e51b9dc25151b616704ab77ab8bbac63 (patch) | |
tree | 2cd5bf34ac53e37b7e548b2f3a4f805a4f0567d8 | |
parent | 0ca2e26e1695cfddae2997b9ade39fd6fd147ae3 (diff) | |
parent | 12a04571bbe5551cff6c8095ede74e4c8d7cc5aa (diff) | |
download | zsh-f8db2e88e51b9dc25151b616704ab77ab8bbac63.tar.gz zsh-f8db2e88e51b9dc25151b616704ab77ab8bbac63.tar.bz2 zsh-f8db2e88e51b9dc25151b616704ab77ab8bbac63.zip |
Merge pull request #769 from divineforest/master
Added alias gcm='git checkout master
-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 183c56c1c..c1b382b2c 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -17,6 +17,7 @@ alias gca='git commit -v -a' compdef _git gca=git-commit alias gco='git checkout' compdef _git gco=git-checkout +alias gcm='git checkout master' alias gb='git branch' compdef _git gb=git-branch alias gba='git branch -a' |