-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
69 lines (69 loc) · 1.83 KB
/
gitconfig
File metadata and controls
69 lines (69 loc) · 1.83 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
[user]
name = Stéphane de Wit
email = contact@stephanedewit.be
signingkey = 3682E7F3DEE381C5D064404286F7DFC9FBE78E02
[alias]
st = status -sb
di = diff
dt = difftool
prb = pull --rebase
pwl = push --force-with-lease
ci = commit
br = branch
co = checkout
mg = merge
rb = rebase
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset' --abbrev-commit --
prbr = !git remote prune ${1-origin} && git branch --verbose | awk -F ' ' '/\\[gone\\]/ { print $1 }' | xargs -r git branch --delete
head = rev-parse --verify --short HEAD
tags = tag --sort=-version:refname -n
lt = describe --tags --abbrev=0
arch = "!git archive -o ../${PWD##*/}.tgz HEAD"
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[core]
excludesfile = ~/.gitignore
pager = delta
[tag]
gpgSign = true
[push]
default = simple
[diff]
tool = Kaleidoscope
wsErrorHighlight = all
[merge]
tool = Kaleidoscope
ff = only
[mergetool "Kaleidoscope"]
cmd = ksdiff --merge --output \"$MERGED\" --base \"$BASE\" -- \"$LOCAL\" --snapshot \"$REMOTE\" --snapshot
trustExitCode = true
[difftool "Kaleidoscope"]
cmd = ksdiff --partial-changeset --relative-path \"$MERGED\" -- \"$LOCAL\" \"$REMOTE\"
[difftool]
prompt = false
[mergetool]
prompt = false
[interactive]
diffFilter = delta --color-only --features=interactive
[delta]
features = decorations
[delta "interactive"]
keep-plus-minus-markers = false
[delta "decorations"]
commit-decoration-style = blue ol
commit-style = raw
file-style = omit
hunk-header-decoration-style = blue box
hunk-header-file-style = red
hunk-header-line-number-style = "#067a00"
hunk-header-style = file line-number syntax
[url "git@bitbucket.org:stephdewit/"]
insteadOf = bb:
[pull]
rebase = false
ff = only
[init]
defaultBranch = main