blob: bf50890407d089482d12ab80cbed54e21614fb3d (
plain)
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
|
[user]
name = Karel Kočí
email = cynerd@email.cz
signingkey = A6BC8B8CEB31659B
[core]
editor = vim
[fetch]
recurseSubmodules = true
parallel = 8
[pull]
rebase = true
[push]
default = simple
[commit]
gpgsign = true
verbose = true
[tag]
gpgSign = true
[merge]
tool = vimdiff
[alias]
co = checkout
ci = commit
st = status
br = branch
wt = worktree
type = cat-file -t
dump = cat-file -p
please = push --force-with-lease
cleanup = "!git branch --merged HEAD --format=\"%(refname:lstrip=2)\" | grep -vx master | xargs git branch -d"
|