Created
February 23, 2016 09:39
-
-
Save dj1020/302a7f94b54af005d04e to your computer and use it in GitHub Desktop.
Git Alias Settings
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] | |
| adda = add -A | |
| al = add . | |
| bl = branch -a | |
| br = branch | |
| ci = commit | |
| cim = commit -m | |
| cima = commit -a -m | |
| ck = checkout | |
| fa = fetch --all | |
| lg = log --graph --decorate | |
| ll = log --graph --oneline --decorate -10 | |
| mg = merge | |
| mgnf = merge --no-ff | |
| pl = pull | |
| plb = pull --rebase | |
| r = remote | |
| rb = rebase | |
| rba = rebase --abort | |
| rbc = rebase --continue | |
| rbi = rebase -i | |
| reseth = reset --hard HEAD | |
| rhh = reset --hard HEAD | |
| rl = remote -v | |
| st = status | |
| tmp = stash | |
| tmpd = stash pop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment