]> git.rmz.io Git - dotfiles.git/blob - git/config
task: remove unused settings
[dotfiles.git] / git / config
1 [user]
2 name = Samir Benmendil
3 email = me@rmz.io
4 [color]
5 branch = auto
6 status = auto
7 ui = auto
8 diff = auto
9 [push]
10 default = current
11 recurseSubmodules = check
12 [diff]
13 tool = vimdiff
14 [diff "gpg"]
15 textconv = gpg --quiet --decrypt --use-agent
16 [color "diff"]
17 new = cyan bold
18 old = red bold
19 meta = green
20 [sendemail]
21 smtpencryption = tls
22 smtpserver = /usr/bin/msmtp
23 smtpuser =
24 [mergetool "fugitive"]
25 cmd = vim -f -c \"Gdiffsplit!\" \"$MERGED\"
26 [merge]
27 tool = fugitive
28 defaultToUpstream = true
29 conflictstyle = diff3
30 [mergetool]
31 prompt = no
32 [rebase]
33 autostash = true
34 autosquash = true
35 stat = true
36 [status]
37 submodulesummary = true
38 [rerere]
39 enabled = true
40 [pull]
41 rebase = interactive
42 [branch]
43 autoSetupMerge = inherit
44 [branch "master"]
45 rebase = merges
46 [branch "develop"]
47 rebase = merges
48 [commit]
49 verbose = true
50 [alias]
51 remote-to-ssh = "!f(){ local r=$1; git remote set-url $r $(git remote get-url $r | sed -r 's,https?://([^/]+),git@\\1:,'); };f"
52 clean-orig = "!git ls-files -o --exclude-standard | grep '\\.orig$' | xargs -n100 -p rm"
53 [filter "lfs"]
54 clean = git-lfs clean -- %f
55 smudge = git-lfs smudge -- %f
56 process = git-lfs filter-process
57 required = true
58
59 [includeIf "gitdir:~/src/fpp/**"]
60 path = ~/.config/git/fpp.config
61 [credential]
62 helper = cache