[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
1 changed files with 2 additions and 0 deletions

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'