-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
88 lines (86 loc) · 1.97 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
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
82
83
84
85
86
87
88
[include]
path = .gitconfig-custom
[core]
quotepath = true
commitGraph = true
excludesfile = ~/.config/git/gitignore
[alias]
st = status
ci = commit
br = branch
co = checkout
cp = cherry-pick
df = diff
lg = log -p
ph = push
phf = push --force-with-lease
tree = log --graph --pretty=oneline --abbrev-commit --all --decorate
stree = log --pretty=oneline --topo-order --graph --abbrev-commit
wdiff = diff --color-words
wmdiff = diff master --color-words
wshow = show --color-words
wmshow = show master --color-words
merge = merge --ff-only
pull = pull --rebase
tt = timetrack
graphviz = "!f() { echo 'digraph git {' ; git log --pretty='format: %h -> { %p }' \"$@\" | sed 's/[0-9a-f]\\+/\"&\"/g' ; echo '}'; }; %f"
conflicted = !vim +Conflicted
[color]
diff = auto
status = auto
branch = auto
ui = true
[commit]
gpgsign = true
verbose = true
[icdiff]
options = --highlight --line-numbers
[fetch]
prune = true
[pull]
rebase = true
[push]
gpgSign = if-asked
autoSetupRemote = true
default = current
[rebase]
autoStash = true
[gc]
writeCommitGraph = true
[rerere]
enabled = true
autoupdate = true
[advice]
addIgnoredFile = false
[init]
defaultBranch = main
[diff]
tool = meld
[difftool]
prompt = false
[difftool "meld"]
trustExitCode = true
[merge]
tool = meld
[mergetool]
prompt = false
hideResolved = true
keepBackup = false
[mergetool "meld"]
trustExitCode = true
useAutoMerge = auto
[credential "https://github.com"]
helper =
helper = !/usr/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !/usr/bin/gh auth git-credential
[credential "https://git.intern.b1-systems.de"]
helper =
helper = !/usr/bin/glab auth git-credential
[credential "https://git.vip-lab.infra.il.thlrz.de"]
helper =
helper = !/usr/bin/glab auth git-credential
[credential]
helper = -l
help = -l