Skip to content

Instantly share code, notes, and snippets.

@regepan
Created June 6, 2024 21:58
Show Gist options
  • Save regepan/925d460e1beb1c37be2b8aa72789299a to your computer and use it in GitHub Desktop.
Save regepan/925d460e1beb1c37be2b8aa72789299a to your computer and use it in GitHub Desktop.
# git
alias gs='git status'
alias gd='git diff'
alias ga='git add'
alias gb='git branch'
alias gl='git log'
alias glp='git log -p'
alias gcm='git commit -m'
alias gc='git checkout'
alias gst='git stash'
alias gsp='git stash pop'
alias fr='git stash && git fetch && git rebase origin/`git rev-parse --abbrev-ref HEAD`'
alias gpu='git push origin `git rev-parse --abbrev-ref HEAD`'
# command
alias c='clear'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment