-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
81 lines (65 loc) · 1.34 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[user]
name = Trynity Mirell
email = [email protected]
[alias]
# Two-character shortcuts
ci = commit
cl = clone
st = status
co = checkout
sm = submodule
cp = cherry-pick
dt = difftool
mt = mergetool
# Plural shortcuts
remotes = remote -v
branches = branch -a
tags = tag -l
submodules = submodule status
# Helpful shortcuts
unstage = reset HEAD --
track = checkout --track
upstream = remote add upstream
discard = checkout --
# Make submodule cloning easier
clone = clone --recursive
[hub]
protocol = ssh
host = <%= @config['hub']['host'] %>
[color]
diff = auto
status = auto
branch = auto
ui = true
[advice]
pushNonFastForward = false
[branch]
autosetupmerge = true
[rerere]
enabled = true
[difftool]
prompt = false
[push]
default = matching
[mergetool]
prompt = false
keepBackup = false
keepTemporaries = false
# Platform Specific Settings
[difftool "Kaleidoscope"]
cmd = ksdiff --partial-changeset --relative-path \"$MERGED\" -- \"$LOCAL\" \"$REMOTE\"
[mergetool "Kaleidoscope"]
cmd = ksdiff --merge --output \"$MERGED\" --base \"$BASE\" -- \"$LOCAL\" --snapshot \"$REMOTE\" --snapshot
trustExitCode = true
[diff]
renames = copies
mnemonicprefix = true
tool = Kaleidoscope
[merge]
tool = Kaleidoscope
[core]
editor = "subl -nw"
[core]
preloadindex = true
fsyncobjectfiles = true
excludesfile = ~/.gitignore