-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
41 lines (39 loc) · 895 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
40
41
[user]
name = buschco
email = [email protected]
signingkey = F5F293E85EA0AA19
[credential]
helper = !aws codecommit credential-helper $@
UseHttpPath = true
[pull]
rebase = true
[push]
default = current
[alias]
s = status
br = branch
pu = push
co = checkout
git = !exec git
gti = !exec git
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
plg = log --format='%h %s <%an>'
dog = log --all --decorate --oneline --graph
[core]
pager = diff-so-fancy | less --tabs=4 -RFX
excludesfile = /Users/colin/.gitignore_global
editor = nvim
trustctime = false
[commit]
gpgsign = true
[gpg]
program = gpg
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[init]
defaultBranch = main
[push]
autoSetupRemote = true