forked from jgumbley/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
40 lines (38 loc) · 1022 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
[user]
name = Jim Gumbley
email = [email protected]
[pager]
diff =
[color]
ui = auto
[alias]
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %Cblue<%an>%Creset' --abbrev-commit --date=relative
ch = checkout -
la = log --oneline --decorate --graph --all
st = status -bs
ci = commit -v
co = checkout
cb = checkout -b
br = branch
rb = rebase -i
idiff = diff --cached
lg = log --pretty=oneline --topo-order --graph --abbrev-commit --decorate
ru = remote update
[core]
excludesfile = /opt/boxen/config/git/gitignore
editor = vim
[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
[credential]
helper = /opt/boxen/bin/boxen-git-credential
[hub]
protocol = https
host = github.gds
[http]
sslVerify = true
[push]
default = matching