-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitconfig
41 lines (40 loc) · 835 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
35
36
37
38
39
40
41
[apply]
whitespace = fix
[user]
name = Severin Smith
email = [email protected]
[color]
ui = auto
diff = auto
status = auto
branch = auto
[alias]
br = branch
brm = branch -a --merged
ci = commit
co = checkout
st = status --short
lg = log --oneline --decorate --graph
lga = log --oneline --decorate --graph --all
unadd = reset HEAD
pushup = "!f() { remote=${1:-origin}; git push --set-upstream $remote \"$(git rev-parse --abbrev-ref HEAD)\"; }; f"
[github]
user = sparks
[gist]
browse = yes
private = no
[merge]
tool = opendiff
[push]
#default = matching
default = simple
[core]
editor = /usr/bin/vim
pager = diff-so-fancy | less --tabs=4 -RFX
[pull]
ff = only
[filter "lfs"]
process = git-lfs filter-process --skip
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge --skip -- %f