forked from awdeorio/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
33 lines (33 loc) · 848 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
[user]
name = Andrew DeOrio
email = [email protected]
signingKey = BB6201BA07530070
[color]
diff = auto
status = auto
branch = auto
[core]
editor = emacs
excludesfile = /Users/awdeorio/.gitignore_global
[alias]
graph = log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(bold blue)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
logdoga = log --decorate --oneline --graph --all
s = status
d = diff
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process
[commit]
gpgSign = true
[push]
default = simple
[gpg]
program = gpg
[diff]
tool = ediff
[difftool.ediff]
cmd = emacs --eval \"(ediff-files \\\"$LOCAL\\\" \\\"$REMOTE\\\")\"
[init]
defaultBranch = main