+.config/yt-dlp.conf
[nethome.git] / .gitconfig
1 [user]
2         name = Jan Kratochvil
3         email = jan@jankratochvil.net
4 [include]
5         path = .gitconfig.local
6 [init]
7         defaultBranch = master
8 [merge]
9         conflictstyle = diff3
10         renamelimit = 10000
11 [color]
12         ui = never
13 [pull]
14         ff = only
15 #       rebase = true
16
17 # golang:
18 #[http]
19 #       cookiefile = /home/jkratoch/.gitcookies
20 [alias]
21         co = checkout
22         ci = commit
23         st = status
24         br = branch
25         hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
26 [pager]
27         branch = off
28 [branch]
29         sort = committerdate
30 # FIXME: It does not work:
31 #[blame]
32 #        ignoreRevsFile = ~/.gitconfig-ignoreblamecommit
33 [format]
34         signature =
35
36 # Big files cludge:
37 #[core]
38 #       compression=1
39 #       bigFileThreshold=100g
40 #[pack]
41 #       depth=2
42 #       window=2
43 #       threads=1