-
Notifications
You must be signed in to change notification settings - Fork 2
/
gitconfig
49 lines (48 loc) · 1.09 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
[user]
name = Sven Koschnicke
email = [email protected]
[merge]
tool = meld
[alias]
s = status -sb
st = status
cm = commit -m
cma = commit -a -m
co = checkout
l = log --all --graph --decorate --oneline --abbrev-commit
[push]
default = current
[color]
ui = 1
[core]
longpaths = true
autocrlf = input
pager = "diff-so-fancy | less --tabs=4 -RFX" # requires diff-so-fancy: npm install -g diff-so-fancy / yaourt diff-so-fancy / brew update && brew install diff-so-fancy
excludesfile = ~/.gitignore-global
ignorecase = true
[filter "lfs"]
clean = git lfs clean %f
smudge = git lfs smudge %f
required = true
[rerere]
enabled = 1
[diff]
algorithm = patience
compactionHeuristic = true # better diffs (since 2.9)
[submodule]
fetchJobs = 3 # parallel cloning, updating, fetching of submodules (sice 2.9)
[github]
user = svenk-ct
[magithub]
online = false
[magithub "status"]
includeStatusHeader = false
includePullRequestsSection = false
includeIssuesSection = false
[credential]
helper = cache
useHttpPath = true
[pull]
rebase = true
[init]
defaultBranch = main