-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
49 lines (49 loc) · 1.03 KB
/
.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
42
43
44
45
46
47
48
49
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[core]
editor = vim
[alias]
st = status
stt = status -uno
ci = commit
br = branch
co = checkout
df = diff
lg = log -p
who = shortlog -s --
praise = blame
lol = log --pretty=oneline --abbrev-commit --graph --decorate
puff = push --force-with-lease
[user]
name = Adam Bachman
email = [email protected]
[push]
default = current
[pull]
default = current
rebase = true
[gui]
fontui = -family Menlo -size 11 -weight normal -slant roman -underline 0 -overstrike 0
fontdiff = -family Menlo -size 11 -weight normal -slant roman -underline 0 -overstrike 0
[filter "media"]
required = true
clean = git media clean %f
smudge = git media smudge %f
[filter "hawser"]
clean = git hawser clean %f
smudge = git hawser smudge %f
required = true
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[web]
browser = open
[merge]
tool = vimdiff
[init]
defaultBranch = main