-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
executable file
·71 lines (71 loc) · 1.69 KB
/
.gitconfig
File metadata and controls
executable file
·71 lines (71 loc) · 1.69 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[user]
name = Markus Daghall
email = markus@daghall.se
[push]
default = current
followTags = true
useForceIfIncludes = true
[alias]
jump = !~/scripts/git-jump.sh
an = add -N
st = status
ci = commit
co = checkout
lg = log --oneline
cmp = lg --left-right
br = branch
di = diff
dis = diff --staged
dix = diff --color-words --word-diff-regex='[a-zA-ZåäöÅÄÖ0-9]+'
dixx = diff --color-words --word-diff-regex='[^[:space:]]'
showx = diff --color-words --word-diff-regex='[a-zA-ZåäöÅÄÖ0-9]+'
showxx = diff --color-words --word-diff-regex='[^[:space:]]'
showfiles = show --name-only --format=
vimdiff = difftool --tool vimdiff --no-prompt
vimmerge = mergetool --tool vimdiff --no-prompt
puff = pull --ff
pure = pull --rebase
uncommit = reset HEAD~ --soft
undiff = "!f() { git diff \"${1:-HEAD}\" \"${1:-HEAD}\"^; }; f"
[branch "master"]
mergeoptions = --no-ff --no-commit
diffoptions = --no-prefix
[branch "main"]
mergeoptions = --no-ff --no-commit
diffoptions = --no-prefix
[color]
ui = auto
[diff]
mnemonicprefix = true
renames = copies
[rerere]
enabled = true
autoUpdate = true
[core]
pager = delta
[delta]
line-numbers = true
navigate = true
color-moved = true
minus-style = "syntax #6c3434"
minus-emph-style = "syntax #952525"
plus-style = "syntax #346234"
plus-emph-style="syntax #259525"
plus-non-emph-style = "syntax #346234"
[commit]
verbose = true
[advice]
detachedHead = false
defaultBranchName = false
[interactive]
diffFilter = delta --color-only
[rebase]
autoStash = true
abbreviateCommands = true
[status]
showUntrackedFiles = all
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true