Last active
April 26, 2019 18:50
-
-
Save quinn/fdc746bc4c550ea43aa04848221408c9 to your computer and use it in GitHub Desktop.
This file contains 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
[color] | |
ui = auto | |
[color "branch"] | |
current = yellow | |
local = yellow | |
remote = green | |
[color "diff"] | |
meta = yellow | |
frag = magenta | |
old = red | |
new = green | |
[color "status"] | |
added = yellow | |
changed = green | |
untracked = cyan | |
[alias] | |
br = branch | |
ci = commit | |
co = checkout | |
df = diff | |
l = log --graph --decorate --all | |
lo = log --graph --decorate | |
lg = log --graph -p | |
mg = merge --no-ff | |
sv = !git daemon --reuseaddr --verbose --base-path=. --export-all ./.git | |
st = status | |
[user] | |
name = Quinn Shanahan | |
email = [email protected] | |
[github] | |
user = quinn | |
[core] | |
excludesfile = /Users/quinnshanahan/.gitignore_global | |
pager = less | |
[mergetool] | |
keepBackup = false | |
[branch] | |
autosetuprebase = always | |
[push] | |
default = matching | |
[filter "lfs"] | |
required = true | |
clean = git-lfs clean -- %f | |
smudge = git-lfs smudge -- %f | |
process = git-lfs filter-process | |
[credential] | |
helper = osxkeychain | |
[filter "tabspace"] | |
required = true | |
smudge = gunexpand --tabs=2 --first-only | |
clean = gexpand --tabs=2 --initial | |
[pull] | |
default = matching |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment