Last active
July 3, 2023 11:36
-
-
Save josephshambrook/dfe089d34f7222e75ca5cf68c95bb423 to your computer and use it in GitHub Desktop.
My Git Aliases
This file contains 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] | |
a = add --all | |
ac = !git add -A && git commit -m | |
cm = commit -m | |
co = checkout | |
cob = checkout -b | |
ps = push | |
psf = push --force | |
pl = pull | |
s = status | |
rb = rebase | |
rbc = rebase --continue | |
rba = rebase --abort | |
rbs = rebase --skip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment