-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
45 lines (45 loc) · 1.09 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
[user]
name = Marjori Pomarole
email = [email protected]
user = mpomarole
[core]
excludesfile = /Users/mpomarole/.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
[color]
ui = true
[push]
default = simple
[alias]
co = checkout
ci = commit
st = status -b --short --column
br = branch
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
type = cat-file -t
dump = cat-file -p
g = grep --break --heading --line-number
sl = log --pretty=format:%h%x09%an%x09%ad%x09%s --graph --all --date=short
[mergetool]
keepBackup = true
[grep]
extendRegexp = true
lineNumber = true
[filter "media"]
required = true
clean = git media clean %f
smudge = git media smudge %f
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process
[credential]
helper = osxkeychain
[init]
defaultBranch = main