-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
54 lines (53 loc) · 1.27 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
[user]
name = Zoltan Bodor
email = [email protected]
signingkey = 540C6F975EEDE895
[github]
user = Nesze
[push]
default = simple
[core]
editor = vim
excludesfile = /Users/zoltanbodor/.gitignore
attributesfile = /Users/zoltanbodor/.gitattributes
; pager = diff-so-fancy | less --tabs=4 -RFX
[alias]
co = checkout
re = restore
ci = commit
st = status
stu = status -uno
ls = ls-files
br = branch
hist = log --pretty=format:'%h %ad [%an] | %s%d' --graph --date=short
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
cl = clean -f -d .
rs = reset --hard HEAD
type = cat-file -t
dump = cat-file -p
diffc = diff --cached
pr = "!f() { git fetch origin pull/$1/head:pr-$1 && git checkout pr-$1; }; f"
[merge]
tool = vimdiff
conflictstyle = diff3
[mergetool]
prom = false
[init]
templatedir = ~/.git_template
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process
[credential]
helper = store
[url "[email protected]:"]
insteadOf = https://github.com/
[filter "strongbox"]
clean = strongbox -clean %f
smudge = strongbox -smudge %f
required = true
[diff "strongbox"]
textconv = strongbox -diff
[pull]
rebase = false