Last active
January 25, 2025 22:23
-
-
Save rgoldfinger/123ea3c836cad687d2da2ac9a2e9575b to your computer and use it in GitHub Desktop.
git aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias gco='git checkout' | |
| alias gpr='git pull --rebase origin master' | |
| alias gcb='git checkout -b' | |
| alias gbd='git branch -D' | |
| alias gl='git log' | |
| alias gs='git status' | |
| alias ga.='git add .' | |
| alias ga='git add' | |
| alias gpo='git push -f origin' | |
| alias gm='git commit -m ' | |
| alias gca='git commit --amend' | |
| alias grc='git rebase --continue' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment