Remove default flag from alias branch

Flag -a does not work with some other flags and should not be a
default because of it.
This commit is contained in:
Kris Lamoureux 2019-10-17 18:35:33 -04:00
parent a2b2fd30a8
commit db64bfb7aa
Signed by: kris
GPG Key ID: 3EDA9C3441EDA925

View File

@ -23,7 +23,7 @@ alias 'gad'='git add . && git diff --cached'
alias 'gdiff'='git diff'
alias 'status'='git status'
alias 'pull'='git pull'
alias 'branch'='git branch -a'
alias 'branch'='git branch'
alias 'log'='git log'
alias 'checkout'='git checkout'
alias 'commit'='git commit -S'