ipv6 kernel parameters
[dotFiles.git] / .gitconfig
blobb8ca87c89e14e158bbc5b15ad053b1babc3d96a2
1 [core]
2         legacyheaders = false
3         quotepath = false
4         pager = less -+$LESS -FRX
5         autocrlf = false #true false input
6         safecrlf = true # true false warn
7         excludesfile = ~/.gitignore_global
8         attributesfile = ~/.gitattributes
9         whitespace = space-before-tab,-indent-with-non-tab,trailing-space
10         editor = vi
11 [user]
12         name = nil
13         email = your@email.com
14 #       signingkey = public gpg key
15 #[commit]
16 #       gpgsign = true
17 [diff]
18         tool = diff
19 [alias]
20         tags = tag -l
21         branches = branch -a
22         remotes = remote -v
23         aliases = config --get-regexp alias
24         ll = log --graph --oneline --decorate --abbrev-commit --pretty=tformat:'%C(auto)%h%Creset -%C(auto)%d%Creset %s %C(auto)(%cr, %an, %G?)%Creset'
25         l = log --stat --decorate --abbrev-commit --pretty=fuller
26         sp = submodule update --recursive --init
27         sf = submodule foreach git submodule update --recursive --init
28 [color]
29         ui = auto
30 [gist]
31         private = no
32         browse = no
33 [push]
34         default = simple
35         followTags = true
36 [pull]
37         default = simple
38         rebase = false
39 [filter "lfs"]
40         clean = git-lfs clean -- %f
41         smudge = git-lfs smudge -- %f
42         process = git-lfs filter-process
43         required = true