forked from marchibbins/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
44 lines (43 loc) · 823 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
44
## Git config: Gareth Foote (@gaffafoote)
[user]
name = garethfoote
email = [email protected]
[credential]
helper = cache --timeout=3600
[core]
editor = /usr/bin/vim
excludesfile = ~/.gitignore
[color]
ui = auto
[color "branch"]
current = yellow bold
local = yellow
remote = green
[color "diff"]
meta = cyan
frag = yellow
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[alias]
co = checkout
cm = commit -m
cam = commit -am
s = status
ss = status -s
df = diff
br = branch
lg = log
[diff]
#tool = /Users/gfoote/.dotfiles/misc/melddiff.py
tool = kompare
[push]
default = simple
[merge]
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true