This commit is contained in:
Alessio Biancalana 2016-09-30 00:37:50 +00:00 committed by GitHub
commit d7eb6be3cf

View file

@ -237,3 +237,9 @@ 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--"'
gchid() {
[[ -n $1 ]] && {git config user.name $1}
[[ -n $2 ]] && {git config user.email $2}
}