Last active
December 9, 2017 22:21
-
-
Save matt-fff/74cb8f94cc786c03b115be187a4efc91 to your computer and use it in GitHub Desktop.
Useful 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] | |
co = checkout | |
cob = checkout -b | |
ci = commit | |
st = status | |
br = branch | |
rb = rebase | |
rbi = rebase -i | |
brc = "!f(){ git branch --merged | egrep -v \"(^\\*|master|dev)\" | xargs git branch -d; };f" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment