-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
36 lines (36 loc) · 1.44 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
[user]
name = Fabio Batista
signingkey = DB018B72
email = [email protected]
[core]
autocrlf = input
excludesfile = /home/fabio/.gitignore_global
[alias]
undo-commit = reset --soft HEAD^
branch2tag = "!sh -c 'set -e;git tag $1 refs/heads/$1;git branch -D $1' -"
tags = for-each-ref --sort='v:refname' --format="'%(align:10,left)%(taggerdate:short)%(end) %(align:10,left)%(color:red bold)%(refname:short)%(color:reset)%(end) %09 %(color:reset)%(align:60,left)%(subject)%(end) %(color:blue bold)%(*objectname:short)%(color:reset) %(color:blue)%(*contents:subject)%(color:reset)'" refs/tags
tags2 = for-each-ref --sort='v:refname' --format="'%(align:10,left)%(taggerdate:short)%(end) %(align:10,left)%(color:red bold)%(refname:short)%(color:reset)%(end) %09 %(color:reset)%(subject)%(color:reset) %0A %(align:24,left)%(end)%(color:blue bold)%(align:8,left)%(*objectname:short)%(end)%(color:reset) %(color:blue)%(*contents:subject)%(color:reset)'" refs/tags
log2 = log --pretty="'format:%C(yellow)%h %Cblue%>(15)%ad %Cgreen%<(8)%aN%Cred%d %Creset%s'" --date=relative
[diff]
tool = meld
[difftool]
prompt = false
[difftool "meld"]
cmd = meld "$LOCAL" "$REMOTE"
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[commit]
gpsign = true
gpgsign = true
[credential]
helper = store
UseHttpPath = true
[mailmap]
file = /home/fabio/.mailmap
[pull]
rebase = false
[init]
defaultBranch = main