-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
57 lines (57 loc) · 1.02 KB
/
gitconfig
File metadata and controls
57 lines (57 loc) · 1.02 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
[init]
defaultBranch = main
[user]
name = Christopher P. Brown
email = chris.brown@guild.com
[column]
ui = auto
[branch]
sort = -committerdate
[tag]
sort = version:refname
[core]
editor = nvim
excludesfile = ~/.gitignore
pager = "diff-so-fancy | less" ; `npm install -g diff-so-fancy`
[diff]
tool = nvim
algorithm = histogram
colorMoved = plain
mnemonicPrefix = true
renames = true
[difftool "nvim"]
cmd = "nvim -d $LOCAL $REMOTE"
[difftool]
prompt = false
[diff "sqlite3"]
binary = true
textconv = "echo .dump | sqlite3"
[merge]
tool = vimdiff
conflictstyle = diff3
[mergetool]
prompt = false
[push]
default = simple
autoSetupRemote = true
followTags = true
[pull]
rebase = true
ff = only
[rebase]
autoSquash = true
autoStash = true
updateRefs = true
[alias]
set-upstream = \
!git branch \
--set-upstream-to=origin/`git symbolic-ref --short HEAD`
praise = blame
[fetch]
prune = true
pruneTags = true
all = true
[help]
autocorrect = prompt
[commit]
verbose = true