[update/shell] Add pull and fetch aliases for git

This commit is contained in:
Anas Elgarhy 2023-04-18 23:33:53 +02:00
parent 77af2fa024
commit 4a8337e472
No known key found for this signature in database
GPG key ID: 0501802A1D496528

View file

@ -30,6 +30,8 @@ alias commit='git commit -S'
alias clone='git clone'
alias add='git add'
alias status='git status'
alias pull='git pull'
alias fetch='git fetch'
# Colorize grep output (good for log files)
alias grep='grep --color=auto'