Last active
July 2, 2018 13:26
-
-
Save willmorgan/020cc9d9426b23c415bf719f763fa892 to your computer and use it in GitHub Desktop.
.gitconfig 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] | |
co = checkout | |
chep = cherry-pick | |
chepc = cherry-pick --continue | |
br = branch | |
ci = commit | |
st = status | |
rbi = rebase -i | |
rbc = rebase --continue | |
plu = pull --rebase upstream | |
plo = pull --rebase origin | |
plod = pull --rebase origin develop | |
plom = pull --rebase origin master | |
plud = pull --rebase upstream develop | |
plum = pull --rebase upstream master | |
ap = add -p | |
camend = commit -a --amend | |
untag = tag -d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment