-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
43 lines (43 loc) · 992 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
42
43
[init]
defaultBranch = master
[core]
editor = vim
excludesfile = ~/.gitignore
[color]
ui = true
[alias]
re = rebase
st = status
ci = commit
br = branch
co = checkout
cp = cherry-pick
rez = reset --hard @{upstream}
log1 = log --pretty=oneline
log2 = log -p
log3 = log --graph --decorate --pretty=oneline --abbrev-commit --all
history = log --pretty=format:'%C(yellow)%h %Cred%ad %Cblue%an%Cgreen%d %Creset%s' --date=short
serve = daemon --verbose --export-all --base-path=.git --reuseaddr --strict-paths .git/
[user]
useconfigonly = true
[merge]
conflictstyle = diff3
[fetch]
prune = true
[pull]
ff = only
[push]
default = simple
[rerere]
enabled = 1
[diff]
compactionHeuristic = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[include]
path = .gitconfig.local
[include]
path = ~/.gitconfig.local