Anthony Perkins
842d69a591
Trying to be smart and using the git_config module was breaking aliases and other settings, because of stray quotation marks.
25 lines
459 B
Text
25 lines
459 B
Text
[pull]
|
|
rebase = true
|
|
[push]
|
|
default = simple
|
|
[color]
|
|
ui = auto
|
|
[credential]
|
|
helper = store
|
|
[gui]
|
|
encoding = utf-8
|
|
[guitool "Rebase"]
|
|
cmd = rebase
|
|
[user]
|
|
name = Anthony Perkins
|
|
email = anthony@acperkins.com
|
|
[alias]
|
|
ci = commit
|
|
co = checkout
|
|
ff = merge --ff-only
|
|
graph = log --graph --oneline --all
|
|
l1 = log --pretty=oneline
|
|
last = log -1 HEAD --pretty=fuller
|
|
lastmail = format-patch --stdout -1 HEAD
|
|
unstage = reset HEAD --
|
|
up = pull --rebase
|