Last active
October 2, 2025 16:39
-
-
Save rvandermeulen/870e9bdcc4ea5b698b7173be540bd030 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] | |
| amend = commit --amend | |
| amendne = commit --amend --no-edit | |
| b = branch | |
| bd = branch -D | |
| co = checkout | |
| cpc = "!git add . && git cherry-pick --continue" | |
| pr = pull --rebase | |
| rc = "!git add . && git rebase --continue" | |
| s = status |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment