-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
34 lines (34 loc) · 982 Bytes
/
gitconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[user]
name = Derek Ludwig
email = derek.s.ludwig@gmail.com
[alias]
bb = for-each-ref --sort=-committerdate refs/heads/ --format='%(HEAD) %(color:yellow)%(refname:short)%(color:reset) - %(color:red)%(objectname:short)%(color:reset) - %(contents:subject) - %(authorname) (%(color:green)%(committerdate:relative)%(color:reset))'
co = checkout
ci = commit
uncommit = reset --soft HEAD^
po = "!git push --set-upstream origin \"$(git rev-parse --abbrev-ref HEAD)\""
[color]
diff = auto
status = auto
branch = auto
[core]
excludesfile = /Users/dludwig/.gitignore
editor = vim
autocrlf = input
[apply]
whitespace = nowarn
[format]
pretty = %C(yellow)%h%Creset %s %C(red)(%an, %cr)%Creset
[push]
default = simple
[merge]
tool = kdiff3
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[url "ssh://git@github.com/"]
insteadOf = https://github.com/
[blame]
ignoreRevsFile = .git-blame-ignore-revs