Created
September 15, 2011 21:55
-
-
Save parndt/1220605 to your computer and use it in GitHub Desktop.
What I use in my ~/.gitconfig
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 = Your Name | |
| email = username@example.com | |
| [color] | |
| branch = auto | |
| diff = auto | |
| status = auto | |
| [color "branch"] | |
| current = yellow reverse | |
| local = yellow | |
| remote = green | |
| [color "diff"] | |
| meta = yellow bold | |
| frag = magenta bold | |
| old = red bold | |
| new = green bold | |
| [color "status"] | |
| added = yellow | |
| changed = green | |
| untracked = cyan | |
| [core] | |
| editor = mate -w | |
| filemode = false | |
| [url "git@github.com:"] | |
| insteadOf = "gh:" | |
| pushInsteadOf = "github:" | |
| pushInsteadOf = "git://github.com/" | |
| [url "git://github.com/"] | |
| insteadOf = "github:" | |
| [url "git@gist.github.com:"] | |
| insteadOf = "gst:" | |
| pushInsteadOf = "gist:" | |
| pushInsteadOf = "git://gist.github.com/" | |
| [url "git://gist.github.com/"] | |
| insteadOf = "gist:" | |
| [url "git@heroku.com:"] | |
| insteadOf = "heroku:" | |
| [github] | |
| user = username | |
| token = your_token_goes_here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment