add git aliases

This commit is contained in:
csimonis 2024-09-03 08:58:36 +02:00
parent 2fc5dedef5
commit dc5d8c9729

4
git.sh
View File

@ -12,3 +12,7 @@ alias gr='git restore'
alias gra='git restore .'
alias gs='git status'
alias gch='git checkout'
alias gst='git stash'
alias gstd='git stash drop'
alias gsta='git stash apply'
alias gstp='git stash pop'