-
Notifications
You must be signed in to change notification settings - Fork 7
/
.gitconfig
39 lines (39 loc) · 1012 Bytes
/
.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
# This is Git's per-user configuration file.
[user]
name = Jichao Ouyang
email = [email protected]
signingkey = DA8B833B52604E63
[push]
default = simple
followTags = true
[merge]
tool = ediff
[mergetool "ediff"]
cmd = emacsclient -c -a \"\" --eval \"(ediff-merge-files-with-ancestor \\\"$LOCAL\\\" \\\"$REMOTE\\\" \\\"$BASE\\\" nil \\\"$MERGED\\\")\"
[core]
excludesfile = /Users/jcouyang/.gitignore_global
editor = emacsclient
quotepath = false
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[alias]
semtag = !git tag -a $(semver tag) -m \"tagging $(semver tag)\"
[commit]
gpgsign = true
[github]
user = jcouyang
[pull]
rebase = true
[init]
defaultBranch = main
[credential "https://github.com"]
helper =
helper = !/run/current-system/sw/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !/run/current-system/sw/bin/gh auth git-credential