-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
34 lines (27 loc) · 826 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
[credential]
# helper = osxkeychain
[core]
excludesfile = /opt/boxen/config/git/gitignore
[hub]
protocol = https
[user]
name = Adam Crews
email = [email protected]
[push]
default = simple
[color]
ui = always
[merge]
# ff = false
[alias]
pu = !"git fetch origin -v; git pull --rebase upstream master"
#pu = !"git fetch origin -v; git fetch upstream -v; git merge upstream/master --ff-only"
lg = !"git log --pretty=format:'%C(yellow)%h%C(reset) %C(blue)%an%C(reset) %C(cyan)%cr%C(reset) %s %C(green)%d%C(reset)' --graph --date-order"
[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
[http]
sslVerify = true