Add git alias for staging tracked files (#5178)

Although `gaa` (git add --all) is cool, it stages every file, tracked or
not, if it is not on .gitignore.

Sometimes we want to just stage everything we are working on, that is
already tracked. For that reason, 'gau' can save us some time.
This commit is contained in:
Felipe Guilherme 2016-12-17 15:01:13 -02:00 коммит произвёл Marc Cornellà
Родитель 67dad45b38
Коммит 456341fd69
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -43,6 +43,7 @@ alias g='git'
alias ga='git add'
alias gaa='git add --all'
alias gapa='git add --patch'
alias gau='git add --update'
alias gb='git branch'
alias gba='git branch -a'