From 98783a445350800d9f9a68d7278d316b4b429bcf Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Mon, 17 Aug 2015 15:15:57 -0700 Subject: [PATCH] update git aliases --- zshrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zshrc b/zshrc index 22c41d3..8359750 100755 --- a/zshrc +++ b/zshrc @@ -218,7 +218,6 @@ alias irb='irb --readline -r irb/completion' # git if command_exists git; then alias a='git add' - alias b='git branch' alias c='git commit' alias cam='git commit -a -m' alias co='git checkout' @@ -229,10 +228,12 @@ if command_exists git; then alias ds='git diff --stat' alias ecf='git edit-conflicted-files mate' alias f='git fetch' + alias gh='git open-in-github' alias glo='git log --oneline --decorate' alias gls='git log --stat' alias gup='git update' alias m='git merge' + alias pfb='git push-feature-branch' alias rmb='git remove-merged-branches' alias s='git status -sb' alias st='git stash'