mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-24 04:29:25 +02:00
Add git alias to stage tracked files
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:
parent
d012402dad
commit
8bccab3b61
1 changed files with 1 additions and 0 deletions
|
|
@ -42,6 +42,7 @@ alias g='git'
|
|||
|
||||
alias ga='git add'
|
||||
alias gaa='git add --all'
|
||||
alias gau='git add --update'
|
||||
alias gapa='git add --patch'
|
||||
|
||||
alias gb='git branch'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue