Last active
December 16, 2015 12:18
-
-
Save dlokesh/5433231 to your computer and use it in GitHub Desktop.
Basic git configurations
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
[user] | |
name = <name> | |
email = <email> | |
[alias] | |
st = status | |
ci = commit | |
co = checkout | |
w = whatchanged | |
[color] | |
diff = auto | |
interactive = auto | |
status = auto | |
branch = auto | |
[color "diff"] | |
meta = yellow bold | |
frag = magenta bold | |
old = red bold | |
new = green bold | |
[gui] | |
fontui = -family Monaco -size 14 -weight normal -slant roman -underline 0 -overstrike 0 | |
fontdiff = -family Monaco -size 14 -weight normal -slant roman -underline 0 -overstrike 0 | |
[core] | |
editor = mvim -f | |
quotepath = false | |
[github] | |
user = <user> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment