about summary refs log tree commit diff
path: root/modules/shell/git/config.in
blob: a4de7c86fc1de6b9f10498e1e778b5da9e7d208f (plain) (blame)
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
73
74
75
76
77
78
79
80
81
[absorb]
    maxStack = 100
[alias]
    ignore = "!gi() { curl -L -s https://www.gitignore.io/api/$@ ;}; gi"
    unbranch = "!git branch --sort -HEAD --merged | sed 1d | xargs git branch -d"
[am]
    messageid = true
    threeWay = true
[branch]
    autosetuprebase = always
[color "branch"]
    current = yellow reverse
    local = yellow
    remote = green
[color "diff"]
    frag = magenta bold
    meta = yellow bold
    new = green bold
    old = red bold
[color "status"]
    added = yellow
    changed = green
    untracked = cyan
[commit]
    gpgsign = true
    verbose = true
[core]
    attributesfile = @attributesfile@
    excludesfile = @ignorefile@
[credential]
    helper = osxkeychain
[diff]
    algorithm = histogram
    compactionHeuristic = true
    mnemonicPrefix = true
    renameLimit = 0
    renames = copy
    submodule = diff
    wsErrorHighlight = all
[diff "mozlz4"]
    textconv = @mozlz4_textconv@
[fetch]
    parallel = 0
[filter "lfs"]
    clean = git-lfs clean -- %f
    required = true
    smudge = git-lfs smudge -- %f
[github]
    user = alyssais
[grep]
    fallbackToNoIndex = true
    lineNumber = true
    patternType = perl
[help]
    autocorrect = 1
[hub]
    protocol = ssh
[init]
    defaultBranch = main
[merge]
    conflictstyle = diff3
    tool = opendiff
[pull]
    rebase = true
[push]
    default = upstream
[rebase]
    autoSquash = true
    autoStash = true
    rescheduleFailedExec = true
    stat = true
[rerere]
    enabled = true
[sendemail]
    assume8bitEncoding = UTF-8
    confirm = always
    envelopeSender = auto
[stash]
    showPatch = true
[submodule]
    fetchJobs = 0