Merge updates from upstream

This commit is contained in:
ncanceill 2015-04-04 13:11:51 +02:00
commit 9b58bbc8c8
58 changed files with 2137 additions and 122 deletions

View file

@ -75,6 +75,7 @@ compdef _git gss=git-status
alias ga='git add'
compdef _git ga=git-add
alias gap='git add --patch'
alias gaa='git add --all'
alias gm='git merge'
compdef _git gm=git-merge
alias grh='git reset HEAD'
@ -99,7 +100,7 @@ compdef _git gvt=git verify-tag
alias gpoat='git push origin --all && git push origin --tags'
alias gmt='git mergetool --no-prompt'
compdef _git gm=git-mergetool
compdef _git gmt=git-mergetool
alias gg='git gui citool'
alias gga='git gui citool --amend'
@ -174,6 +175,3 @@ alias gignore='git update-index --assume-unchanged'
alias gunignore='git update-index --no-assume-unchanged'
# list temporarily ignored files
alias gignored='git ls-files -v | grep "^[[:lower:]]"'