-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
51 lines (51 loc) · 1.21 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
[user]
name = Derek Thurn
editor = emacs_wrapper.rb
email = derek@fake.email
[color]
ui = true
diff = true
status = true
branch = true
interactive = true
grep = true
[color "branch"]
current = white blue bold
local = blue
remote = green
[color "diff"]
plain = white
meta = yellow bold
frag = magenta bold
old = red
new = green
whitespace = red blink
[color "status"]
added = yellow
changed = green
untracked = cyan
[alias]
co = checkout
tree = log --graph --pretty=oneline --decorate
up = !export git_updating=1 && git fetch && git rebase trunk && push-to-ds && export git_updating=0
[core]
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.global_gitignore
#pager = "emacspager.pl"
pager = less
[apply]
whitespace = fix
[merge]
tool = meldscript
conflictstyle = diff3
[mergetool "meldscript"]
cmd = git_merge_meld.sh $LOCAL $BASE $REMOTE $MERGED
[rerere]
enabled = true
[push]
default = matching
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f