new aliases for git plugin

This commit is contained in:
tinogomes 2016-03-26 13:34:23 -03:00 committed by Celestino Gomes
commit c630ac2c31

View file

@ -215,3 +215,8 @@ alias glum='git pull upstream master'
alias gwch='git whatchanged -p --abbrev-commit --pretty=medium'
alias gwip='git add -A; git rm $(git ls-files --deleted) 2> /dev/null; git commit -m "--wip--"'
# Remove from repo all files deleted
alias gitstrm="git st | egrep 'deleted' | sed -e 's/#//' -e 's/deleted:/git rm/' | sh"
alias gitgcprune="git remote prune origin ; git gc --prune --aggressive"