-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
32 lines (29 loc) · 1018 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
[user]
email = [email protected]
name = Aaron Esau
signingkey = 02EC5EE6194DA341A132A295FA6E4332B9449910
signingkeys = 02EC5EE6194DA341A132A295FA6E4332B9449910
[credential]
helper = store
[commit]
gpgsign = false
[alias]
commit = commit
count-lines = "! git log --author=\"$1\" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf \"added lines: %s, removed lines: %s, total lines: %s\\n\", add, subs, loc }' #"
[gpg]
program = gpg
[pull]
rebase = false
[init]
defaultBranch = main
[push]
autoSetupRemote = true
[alias]
branchcommits = !git for-each-ref --sort=committerdate refs/heads/ --format='%(HEAD) %(color:yellow)%(refname:short)%(color:reset) - %(contents:subject) - %(authorname) (%(color:green)%(committerdate:short)%(color:reset))'
[url "[email protected]"]
insteadOf = [email protected]
[url "ssh://[email protected]"]
insteadOf = https://gitea.zellic.io
# github
[url "ssh://[email protected]"]
insteadOf = https://github.com