-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
59 lines (59 loc) · 1.39 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
55
56
57
58
59
[user]
name = Michael Eaton
email = [email protected]
[color]
branch = auto
diff = auto
status = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[merge]
tool = p4merge
keepBackup = false
[mergetool "p4merge"]
cmd = "p4merge.exe $BASE $LOCAL $REMOTE $MERGED"
keepTemporaries = false
trustExitCode = false
keepBackup = false
[diff]
tool = p4diff
[difftool "p4diff"]
prompt = false
cmd = "p4merge.exe $LOCAL $REMOTE"
[core]
autocrlf = true
legacyheaders = false
editor = gvim --nofork '%*'
[gui]
fontdiff = -family Monaco -size 12 -weight normal -slant roman -underline 0 -overstrike 0
[repack]
usedeltabaseoffset = true
[alias]
ci = commit
co = checkout
st = status
br = branch
ch = cherry -v origin
mine = log --author=mjeaton
spull = !git svn fetch && git svn rebase
spush = !git svn dcommit
hist = log -10 --pretty=format:\"%Cred%h%Creset %ad %Cgreen(%cr)%Creset | %s%d %C(yellow)[%an]%Creset\" --graph --date=short
hist2 = log --pretty=format:\"%Cred%h%Creset %ad | %s%d %C(bold yellow)[%an]%Creset %Cgreen(%cr)%Creset\" --graph --date=short
type = cat-file -t
dump = cat-file -p
gpom = git pull origin master
[github]
user = mjeaton
[push]
default = simple