-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
41 lines (41 loc) · 877 Bytes
/
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
[user]
name = Tomas Kazmar
email = [email protected]
[includeIf "gitdir:~/humai/"]
path = ~/humai/.gitconfig
[includeIf "gitdir:/export/"]
path = ~/humai/.gitconfig
[includeIf "gitdir:/opt/synctool"]
path = ~/humai/.gitconfig
[alias]
st = status
ci = commit
co = checkout
br = branch
lo = log --graph --decorate --pretty=oneline --abbrev-commit --all
lp = log --graph --decorate --date=short --pretty=medium --abbrev-commit --all --patch
sh = show --stat --oneline
[core]
excludesfile = ~/.gitignore
editor = vim
filemode = true
[color]
status = auto
interactive = auto
diff = auto
branch = auto
[merge]
tool = vimdiff
[pull]
rebase = true
[push]
default = simple
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[bash]
showDirtyState = true
[credential]
helper = store