Skip to content

Commit

Permalink
Update .gitconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
brittharr authored May 3, 2017
1 parent 9852783 commit d574e4d
Showing 1 changed file with 27 additions and 16 deletions.
43 changes: 27 additions & 16 deletions .gitconfig
Original file line number Diff line number Diff line change
@@ -1,23 +1,34 @@
[core]
pager = diff-highlight | diff-so-fancy | less -r
[alias]
st = status
ci = commit
br = branch
co = checkout
unstage = reset HEAD --
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
st = status
ci = commit
br = branch
co = checkout
unstage = reset HEAD --
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
amend = commit --amend --no-edit
pl = pull --rebase
[color]
ui = auto
ui = auto
[color "status"]
added = yellow
changed = green
untracked = cyan
[push]
default = simple
default = simple
followTags = true
[credential]
helper = osxkeychain
helper = osxkeychain
[filter "media"]
required = true
clean = git media clean %f
smudge = git media smudge %f
required = true
clean = git media clean %f
smudge = git media smudge %f
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[status]
submodulesummary = 1
submodulesummary = 1
[help]
autocorrect = 1

0 comments on commit d574e4d

Please sign in to comment.