[update] Add alias for git

This commit is contained in:
Anas Elgarhy 2023-04-15 05:04:44 +02:00
parent 5001635823
commit 7e0341098e
No known key found for this signature in database
GPG key ID: 0501802A1D496528

View file

@ -20,8 +20,14 @@ alias .='jpwd'
# Edit something
alias e="$EDITOR"
# Read the file
alias r='bat'
# Git
alias gp='git push'
alias commit='git commit -S'
alias clone='git clone'
# Colorize grep output (good for log files)
alias grep='grep --color=auto'
alias egrep='egrep --color=auto'