-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
72 lines (72 loc) · 1.39 KB
/
Copy path.gitconfig
File metadata and controls
72 lines (72 loc) · 1.39 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[user]
email = dbesen@gmail.com
name = David Besen
[color]
ui = true
[difftool "sdiff"]
cmd = "sdiff -l -d "
[difftool]
prompt = false
[alias]
vimdiff = difftool -t vimdiff
sdiff = difftool -t sdiff
really-clean = clean -X -d -f -f
would-clean = clean -X -d -n
up = pull --rebase --autostash
branch-owners = "!f() { git for-each-ref refs/remotes/ --format='%(refname) %09 %(authorname) %09 %(committerdate)'; }; f | column -t -s'\t'"
[branch]
autosetuprebase = always
sort = -committerdate
[log]
date = local
[core]
sparsecheckout = false
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[rerere]
enabled = true
autoupdate = true
[merge]
conflictstyle = zdiff3
[git-up "fetch"]
all = true
[git-up "bundler"]
check = false
[push]
default = simple
autoSetupRemote = true
followTags = true
[http]
sslVerify = false
[status]
showuntrackedfiles = all
[pretty]
oneline-s = %C(yellow)%h%Creset %<(20,trunc)%an %C(blue)%cs%Creset %s
[init]
defaultBranch = main
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[tag]
sort = version:refname
[diff]
algorithm = histogram
colorMoved = plain
mnemonicPrefix = true
renames = true
[grep]
patternType = perl
[rebase]
autosquash = true
autostash = true
updateRefs = true
[column]
ui = auto
[fetch]
prune = true
pruneTags = true
all = true