-
-
Save DAddYE/bda4713dd4b17f57177abf6b929c16e7 to your computer and use it in GitHub Desktop.
A simple .gitconfig file.
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 = DAddYE | |
email = [email protected] | |
[alias] | |
co = checkout | |
st = status | |
ci = commit | |
br = branch | |
sm = submodule | |
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit | |
[apply] | |
whitespace = nowarn | |
[color] | |
diff = auto | |
status = auto | |
branch = auto | |
interactive = auto | |
ui = auto | |
grep = auto | |
[help] | |
autocorrect = 1 | |
[push] | |
default = current | |
[core] | |
editor = emacs | |
excludesfile = /Users/daddye/.gitignore | |
quotepath = false | |
[branch "raw"] | |
remote = origin | |
merge = refs/heads/raw | |
[branch "development"] | |
merge = refs/heads/development | |
remote = origin | |
[credential] | |
helper = osxkeychain |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment