Skip to content

Instantly share code, notes, and snippets.

@mihajloS
mihajloS / .zshrc
Last active April 29, 2024 08:18
Github aliases
# git cli alias performance toolkit
alias gs='git status'
alias gp='git push'
alias gp!='git push --force-with-lease'
alias ga='git commit --amend'
alias ga!='git commit --amend --no-edit'
alias pull='get pull --rebase'
#workflow inline example, where you amend last commmit with latest changes
#git add . && ga! && gp!