Skip to content

Instantly share code, notes, and snippets.

View mihajloS's full-sized avatar
:octocat:
I may be slow to respond.

mihajlo mihajloS

:octocat:
I may be slow to respond.
View GitHub Profile
@mihajloS
mihajloS / .zshrc
Last active July 15, 2024 12:14
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='git pull --rebase'