-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.gitconfig
57 lines (52 loc) · 1.29 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[alias]
lg = log -1 --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --branches
amend = commit --amend --no-edit
pf = push -f
current = symbolic-ref --short HEAD
ls= for-each-ref --sort=-committerdate --count=10 --format='%(refname:short)' refs/heads/
[apply]
whitespace = fix
[core]
whitespace = space-before-tab,-indent-with-non-tab,trailing-space
pager = delta --plus-color="#012800" --minus-color="#340001" --theme="OneHalfLight"
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold # line info
old = red bold # deletions
new = green bold # additions
[color "status"]
added = yellow
changed = green
untracked = cyan
[diff]
renames = copies
[help]
# Automatically correct and execute mistyped commands
autocorrect = 1
[merge]
[user]
email = [email protected]
name = Antonin Januska
[push]
default = simple
[interactive]
diffFilter = delta --color-only
[delta]
plus-color = "#012800"
minus-color = "#340001"
theme = 'OneHalfLight'
[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