forked from ardell/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
39 lines (39 loc) · 813 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
[include]
path = ~/.gitconfig.local
[color]
diff = auto
status = auto
branch = auto
interactive = auto
[alias]
st = status
ci = commit
co = checkout
br = branch
lg = log --graph --decorate --date=relative --abbrev-commit --pretty=format:'%Cred%h%Creset [%an]%C(yellow)%d%Creset %s %Cgreen(%ar)%Creset'
recent = reflog -20 --date=relative
pb = planbox
staging-tags = tag -l \"staging*\"
[rerere]
enabled = true
[merge]
summary = true
prompt = false
tool = opendiff
[core]
excludesfile = ~/.gitignore
whitespace = trailing-space,space-before-tab,tab-in-indent
autocrlf = false
savecrlf = true
editor = "vi"
pager = tee
[push]
default = current
[branch]
autosetuprebase = always
[diff]
prompt = false
[mergetool]
prompt = false
[gc]
pruneExpire = "1 week ago"