-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
63 lines (63 loc) · 1.59 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
[user]
name = Marcel Huber
email = [email protected]
[color]
ui = auto
branch = auto
diff = auto
status = auto
[daemon]
receivepack = true
uploadpack = true
uploadarch = true
[core]
excludesfile = ~/.gitignore
editor = vim
filemode = true
pager = diff-so-fancy | less --tabs=4 -RFX
[help]
autocorrect = 4
[merge]
keepBackup = false
tool = vimdiff
defaultToUpstream = true
[diff]
mnemonicprefix = true
tool = vimdiff
renameLimit = 4096
[alias]
hist = log --pretty=format:\"%h %ad |%d %s [%an]\" --graph --date=short
s = status --short --branch --ignore-submodules=untracked
changelog = log --date=short --pretty=format:\"%cd %cn <%ce>%n%n %d%n%w(79,6,6)%s%n%+b%n\"
changes = log --date=short --pretty=format:\"%d%n- %cd %cn%n%n%w(79,4,4)%s%n%+b%n\"
logg = log --graph --abbrev-commit --decorate --all --format=format:\"%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(dim white) - %an%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n %C(white)%s%C(reset)\"
[log]
decorate = short
[branch]
autosetuprebase = always
[push]
default = tracking
[credential]
helper = cache --timeout 36000
[credential "https://git.hsr.ch"]
username = m1huber
[filter "lfs"]
smudge = git-lfs smudge -- %f
clean = git-lfs clean -- %f
required = true
[filter "gitcrypt"]
smudge = git-crypt smudge
clean = git-crypt clean
required = true
[diff "ps"]
textconv = ps2ascii
binary = true
[diff "img"]
textconv = exiv2
cachetextconv = true
[diff "odf"]
textconv = odt2txt
[diff "gitcrypt"]
textconv = git-crypt diff
[interactive]
diffFilter = diff-so-fancy --patch-mode | less --tabs=4 -RFX