forked from yongjhih/rc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
75 lines (73 loc) · 2.18 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
[color]
ui = auto
[user]
name = Andrew Chen
signingkey = 01C54D62
;passphrase =
[merge]
tool = vimdiff
renameLimit = 9999999
[alias]
diffall = !gitdiffall
clear = !git reset --hard && git clean -df
l = log --graph
lg = log --graph --decorate --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
recurt = !git-recurt
cherries = !git-cherries
fetch = !git-remote-fetch
pwd = !pwd
diff-branch = !git-diff-branch
;graphviz = "!f() { echo 'digraph git { node [color=lightblue2, style=filled, fontname=\"LiHeiPro.ttf\"]; '; git log --pretty='format: %h -> { %p }' \"$@\" | sed 's/[0-9a-f][0-9a-f]*/\"&\"/g' ; echo '}'; }; f"
graphviz = "!f() { echo 'digraph git { node [color=lightblue2, style=filled]; '; git log --pretty='format: %h -> { %p }' \"$@\" | sed 's/[0-9a-f][0-9a-f]*/\"&\"/g' ; echo '}'; }; f"
[giggle]
main-window-maximized = true
main-window-geometry = 0x0+0+0
file-view-vpane-position = 905
history-view-vpane-position = 485
main-window-view = HistoryView
[hooks "gpg"]
;passphrase =
[format]
;passphrase =
signingkey = 01C54D62
signoff = true
[diff]
tool = vimdiff
[core]
editor = vim
excludesfile = /Users/yongjhih/.gitignore_global
;gitproxy = /home/andrew/bin/git-proxy
[help]
autocorrect = 1
[sendemail]
;smtpencryption = tls
;smtpserver = smtp.gmail.com
;smtpuser = [email protected]
;smtpserverport = 587
;smtpserver = 10.8.27.21
;smtpserver = 10.8.27.38
smtpserver = localhost
suppressfrom = true
[rerere]
enabled = 0
[gc]
auto = 0
#[http]
# sslVerify = false
[alias]
shorten = "!sh -c 'curl -i http://git.io -F url=$1' -"
shorten2 = "!sh -c 'curl -i http://git.io -F url=$1 -F code=$2' -"
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true
[commit]
template = /Users/yongjhih/.stCommitMsg
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f