-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
47 lines (47 loc) · 1.12 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
[user]
name = Jacob Kaplan-Moss
email = [email protected]
[color]
ui = auto
[alias]
ci = commit
co = checkout
st = status
superclean = clean -dfx
lg = log -10 --pretty=format:'%Cred%h%Creset -%Creset %s %Cgreen(%cr) %C(bold blue)<%ae>%Creset'
ready = rebase -i @{u}
standup = log --pretty=oneline --abbrev-commit --since yesterday --author [email protected]
wip = commit -am '🚧'
amend = commit --amend --no-edit
edit = commit --amend --only
[apply]
whitespace = fix
[gist]
browse = false
[push]
default = simple
autoSetupRemote = true
[core]
excludesfile = ~/.gitignore_global
pager = less -F -X
attributesFile = ~/.gitattributes
[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
[hub]
protocol = https
[credential]
helper = osxkeychain
useHttpPath = true
[diff]
noprefix = true
[pull]
rebase = false
[init]
defaultBranch = main
[diff "image"]
textconv = imgcat
command = imgdiff