Created
December 7, 2017 05:33
-
-
Save mdub/3aa24e890e7e6d4ba8b08cb99a9b4c7d to your computer and use it in GitHub Desktop.
Git config
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] | |
b = branch | |
ci = commit | |
co = checkout | |
l = log --oneline --decorate --graph | |
s = status | |
pr = pull --rebase | |
cleanup = !git branch --merged | grep -v '\\*\\|master\\|develop' | xargs -n 1 git branch -d | |
[url "https://github.com/"] | |
insteadof = [email protected]: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment