<mohammadrony>

Git

Common

alias gl='git pull'
alias gp='git push'
alias gpm='git push origin main'

To keep changes

alias gsl='git stash; git pull; git stash pop'
alias gsr='git stash; git fetch; git reset --hard; git stash pop'