Skip to content

Instantly share code, notes, and snippets.

@mihajloS
mihajloS / .zshrc
Last active May 15, 2024 10:44
Github aliases
# git cli alias performance toolkit
alias gs='git status'
alias gc='git checkout'
alias gp='git push'
alias gp!='git push --force-with-lease'
alias ga='git commit --amend'
alias ga!='git commit --amend --no-edit'
alias grs='git restore --staged'
alias grs!='git restore --staged .'
alias pull='get pull --rebase'