-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
88 lines (80 loc) · 2.2 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
82
83
84
85
86
87
88
[core]
excludesfile = /Users/tspruit/.gitignore_global
autocrlf = input
attributesfile = /Users/tspruit/.gitattributes
[color]
diff = auto
status = auto
branch = auto
interactive = auto
ui = true
pager = true
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[alias]
co = checkout
st = status
ci = commit
w = whatchanged
br = branch
pf = push --force-with-lease
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset' --abbrev-commit
lgd = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cd)%C(bold blue)<%an>%Creset' --abbrev-commit
graph = log --graph -10 --branches --remotes --tags --format=format:'%Cgreen%h %Creset• %<(75,trunc)%s (%cN, %cr) %Cred%d' --date-order
showfiles = diff-tree --no-commit-id --name-status -r
masterdiff = branch --merged master
developdiff = branch --merged develop
dd = branch --merged develop
md = branch --merged master
dt = difftool -d
dtc = difftool -d --no-symlinks
wipeout = checkout -- .
sort = branch --sort=-committerdate
[difftool "sourcetree"]
cmd = /Applications/Sourcetree.app/Contents/Resources/araxiscompare-w.sh -2 \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/Sourcetree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[user]
name = Troy Spruit
email = [email protected]
[push]
default = current
[merge]
tool = sourcetree
ff = only
#tool = opendiff
[diff]
tool = araxis
submodule = log
#tool = opendiff
[difftool]
prompt = false
[mergetool]
prompt = false
keepBackup = false
[pull]
rebase = true
[pager]
branch =
[commit]
template = /Users/tspruit/.stCommitMsg
[init]
defaultBranch = main