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