-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
56 lines (56 loc) · 1.24 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
50
51
52
53
54
55
56
[user]
name = Geoff Lane
email = [email protected]
[github]
user = geofflane
[init]
defaultBranch = main
[core]
excludesfile = ~/dotfiles/gitignore_global
editor = nvim --clean -f # --nomru
[push]
default = upstream
followTags = true
[color]
ui = true
branch = auto
diff = auto
status = auto
[alias]
type = cat-file -t
dump = cat-file -p
br = branch
ch = cherry -v origin
ci = commit
co = checkout
df = diff
mine = log --author=Geoff
st = status
lg = log --pretty=format:'%Cred%h%Creset - %aE -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --graph --abbrev-commit --date=relative
put = "push origin HEAD"
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
tug = pull --rebase
[filter "media"]
required = true
clean = git media clean %f
smudge = git media smudge %f
[merge]
tool = p4merge
[mergetool]
prompt = false
keepBackup = false
[mergetool "p4merge"]
path = /usr/local/bin/p4merge
[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
[rerere]
enabled = true
[pull]
rebase = merges