Created
January 6, 2015 19:09
-
-
Save jherdman/26940ea34033d196e0d6 to your computer and use it in GitHub Desktop.
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
# Don't forget to manually enter GIT_AUTHOR_NAME and GIT_AUTHOR_EMAIL | |
# in your .zshrc file. | |
[alias] | |
co = checkout | |
pr = pull --rebase --prune | |
ci = commit -v | |
rollback = reset --soft HEAD^ | |
st = status -sb | |
br = branch | |
unstage = reset HEAD | |
[merge] | |
tool = opendiff | |
[mirror] | |
summary = true | |
[core] | |
autocrl = true | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
excludesfile = /Users/james/.gitignore | |
editor = /usr/bin/vim | |
trustctime = false | |
[difftool] | |
prompt = false | |
[push] | |
default = simple | |
[status] | |
submodulesummary = true | |
[user] | |
name = James Herdman | |
email = [email protected] | |
[credential] | |
helper = osxkeychain | |
[grep] | |
lineNumber = true | |
extendRegexp = true | |
[color] | |
ui = auto | |
[filter "media"] | |
clean = git media clean %f | |
smudge = git media smudge %f | |
required = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment