new aliases for git pull/push

This commit is contained in:
tinogomes 2012-08-31 10:31:26 -03:00
commit 814f54ad43

View file

@ -110,4 +110,9 @@ alias glp="_git_log_prettily"
compdef _git glp=git-log compdef _git glp=git-log
# Remove from repo all files deleted # Remove from repo all files deleted
alias gitstrm="git st | egrep 'deleted' | sed -e 's/#//' -e 's/deleted:/git rm/' | sh" alias gitstrm='git st | egrep "deleted" | sed -e "s/#//" -e "s/deleted:/git rm/" | sh'
alias gpush='git push'
compdef gpush=git
alias gpull='git pull'
compdef gpull=git