-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig_home
52 lines (52 loc) · 1.17 KB
/
gitconfig_home
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
[user]
name = Brian Olpin
email = [email protected]
[http]
sslVerify = false
[core]
autocrlf = false
excludesfile = /Users/brian/.gitignore_global
[push]
default = current
; [core]
; autocrlf = true
; [alias]
; co = checkout
; cleanup = !git remote prune origin && git gc && git clean -df && git stash clear
; [color]
; diff = auto
; status = auto
; branch = auto
;
; [color "diff"]
; meta = yellow
;
; [core]
; excludesfile = ~/.gitignore
; editor = vim --noplugin
; [apply]
; whitespace = nowarn
;
; [alias]
; lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
; [help]
; autocorrect = 1
; [branch]
; autosetupmerge = true
; autosetuprebase = always
; [push]
; default = current
; [rerere]
; enabled = 1
[github]
user = bolpin
; [merge]
; ff = only
[credential]
helper = osxkeychain
[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