-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
50 lines (49 loc) · 1.29 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
[user]
email = [email protected]
name = calee0219
signingKey = 42B0D0C88FCF3665B23B7703B28698579C176887
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFlKWg01VSr5bAAapLoGLnF//cselLLaVYf4Vo8+bzvC
[color]
ui = true
branch = auto
diff = auto
interactive = auto
status = auto
[core]
editor = vim
pager = less -R
excludesfile = /Users/calee/.gitignore_global
autocrlf = input
[alias]
ap = add --patch
sub = reset HEAD
st = status
s = status -s
co = checkout
ci = commit
br = branch
dc = diff --cached
ds = diff --stat
dcs = diff --cached --stat
tree = log --oneline --decorate --graph
shows = show --stat
showns = show --name-status
logs = log --pretty=oneline --abbrev-commit
lg = log --color --graph --all --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
pu = pull --rebase
[diff]
tool = vimdiff
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Users/calee/Applications/Sourcetree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true
[commit]
gpgSign = true
[format]
signOff = true
[gpg]
format = ssh
[gpg "ssh"]
program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign"