-
Notifications
You must be signed in to change notification settings - Fork 1
/
gitconfig
54 lines (42 loc) · 1.03 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 = Dan LaMotte
email = [email protected]
[color]
ui = true
[credential]
helper = cache --timeout=28800
[alias]
st = status
ci = commit
co = checkout
br = branch
di = diff
diff-branch = "!f() { git diff `git merge-base $1 HEAD` HEAD; }; f"
ds = diff --staged
glog = log --graph
log-graph = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
[core]
excludesfile = ~/.gitignore
[diff]
noprefix = true
#[init]
# templateDir = ~/.git_template
[merge]
#tool = vimdiff
tool = splice
[mergetool "splice"]
cmd = "vim -f $BASE $LOCAL $REMOTE $MERGED -c 'Splice9Init'"
trustExitCode = true
[push]
default = simple
[pull]
ff = only
[include]
path = ~/.gitconfig.local
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[remote "origin"]
fetch = +refs/tags/deploy-*:refs/tags/deploy-*