-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgitconfig
More file actions
45 lines (45 loc) · 878 Bytes
/
gitconfig
File metadata and controls
45 lines (45 loc) · 878 Bytes
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
[color]
ui = true
[color "diff"]
meta = yellow
frag = blue
[user]
name = Jack O'Connor
email = oconnor663@gmail.com
[include]
path = ~/.gitconfig.local
[push]
default = simple
autoSetupRemote = true
[alias]
pick = cherry-pick --ff
co = checkout
ff = "!git fetch origin && git merge --ff-only \"origin/$(git rev-parse --abbrev-ref HEAD)\""
[merge]
conflictstyle = zdiff3
[pull]
ff = only
[init]
defaultBranch = main
[core]
pager = delta --max-line-length 4096
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
[merge]
conflictstyle = diff3
[diff]
algorithm = histogram
colorMoved = plain
mnemonicPrefix = true
renames = true
[commit]
verbose = true
[column]
ui = auto
[branch]
sort = -committerdate
autoSetupMerge = false
[tag]
sort = version:refname