]> git.rmz.io Git - dotfiles.git/blob - git/config
04367fe1f120b0eccb96824a56d02a3240f94b7d
[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 updateRefs = true
37 [status]
38 submodulesummary = true
39 [rerere]
40 enabled = true
41 [pull]
42 rebase = interactive
43 [branch]
44 autoSetupMerge = inherit
45 [branch "master"]
46 rebase = merges
47 [branch "develop"]
48 rebase = merges
49 [commit]
50 verbose = true
51 [alias]
52 remote-to-ssh = "!f(){ local r=$1; git remote set-url $r $(git remote get-url $r | sed -r 's,https?://([^/]+),git@\\1:,'); };f"
53 clean-orig = "!git ls-files -o --exclude-standard | grep '\\.orig$' | xargs -n100 -p rm"
54 [filter "lfs"]
55 clean = git-lfs clean -- %f
56 smudge = git-lfs smudge -- %f
57 process = git-lfs filter-process
58 required = true
59
60 [includeIf "gitdir:~/src/fpp/**"]
61 path = ~/.config/git/fpp.config
62 [credential]
63 helper = cache