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