Created
October 4, 2016 07:26
-
-
Save chreke/17f6d085446cd6e31e02f5c162152f79 to your computer and use it in GitHub Desktop.
Example Git configuration
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
; Aliases lets you define shortcuts for common git commands, | |
; so you can type "git st" instead of "git status", for example. | |
[alias] | |
st = status | |
ci = commit --verbose | |
br = branch | |
co = checkout | |
; IMPORTANT! Please specify the same email address here as the one | |
; you use on GitHub! | |
[user] | |
name = <Your name> | |
email = <Your e-mail> | |
; Get colors in diffs: | |
[color] | |
branch = auto | |
diff = auto | |
interactive = auto | |
status = auto | |
; You don't HAVE to use Vim ;) | |
[core] | |
editor = vim | |
; These settings are used to configure a tool for handling conflicts. | |
; If you have OSX and the P4 suite these commands might work out of | |
; the box. Otherwise you may have to do some configuration. | |
; NB: If you're using a graphical client you probably won't need | |
; these settings | |
[merge] | |
keepBackup = false | |
tool = p4mergetool | |
[mergetool] | |
prompt = false | |
keepBackup = false | |
[mergetool "p4mergetool"] | |
cmd = /Applications/p4merge.app/Contents/Resources/launchp4merge $PWD/$BASE $PWD/$REMOTE $PWD/$LOCAL $PWD/$MERGED | |
trustExitCode = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment