From 5d88376bdbdc94ebd9909e3a8e02ef57fdfaeb6f Mon Sep 17 00:00:00 2001 From: Landon Spear Date: Wed, 11 Dec 2013 21:25:54 -0800 Subject: [PATCH 1/2] Add develop branch checkout alias to git plugin --- plugins/git/git.plugin.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index fde22a37d..4039b3106 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -29,6 +29,7 @@ compdef _git gcmsg=git-commit alias gco='git checkout' compdef _git gco=git-checkout alias gcm='git checkout master' +alias gcd='git checkout develop' alias gr='git remote' compdef _git gr=git-remote alias grv='git remote -v' From 837165066a52ca9f3c77d1c6963a98485f7d08a0 Mon Sep 17 00:00:00 2001 From: Landon Spear Date: Wed, 11 Dec 2013 21:27:04 -0800 Subject: [PATCH 2/2] Change agnoster git symbol back to branching icon --- themes/agnoster.zsh-theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/agnoster.zsh-theme b/themes/agnoster.zsh-theme index 01cdc80e5..396a4cb17 100644 --- a/themes/agnoster.zsh-theme +++ b/themes/agnoster.zsh-theme @@ -90,7 +90,7 @@ prompt_git() { zstyle ':vcs_info:*' formats ' %u%c' zstyle ':vcs_info:*' actionformats '%u%c' vcs_info - echo -n "${ref/refs\/heads\//± }${vcs_info_msg_0_}" + echo -n "${ref/refs\/heads\// }${vcs_info_msg_0_}" fi }