Created
February 20, 2016 06:11
-
-
Save garukun/c11ddf5f41748f82a57f to your computer and use it in GitHub Desktop.
Useful 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] | |
ci = commit | |
cm = commit -am "squash!" | |
co = checkout | |
b = branch | |
cob = checkout -b | |
s = status | |
dg = difftool -t intellij -d | |
tree = log --graph --decorate --oneline | |
[color] | |
ui = true | |
diff = auto | |
branch = auto | |
interactive = auto | |
[diff] | |
tool = intellij | |
[difftool "intellij"] | |
cmd = "/Applications/IntelliJ\\ IDEA\\ 15\\ EAP.app/Contents/MacOS/idea" diff \"$LOCAL\" \"$REMOTE\" | |
[filter "lfs"] | |
clean = git-lfs clean %f | |
smudge = git-lfs smudge %f | |
required = true | |
[url "[email protected]:"] | |
insteadOf = https://github.com/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment