Files
dotfiles/.config/git/config
druckdev 2564c7540f git📟 Add tags and stashes to search pattern
For example when viewing tags (to start from the start of the file) or
listing stashes with `git stash list -u`.
2021-02-18 02:13:40 +01:00

33 lines
824 B
Plaintext

[user]
email = druckdev@protonmail.com
name = druckdev
signingkey = C0A44F69F2E29F6586C86B96CA6B3A516FAC2555
[commit]
gpgsign = true
verbose = true
[difftool "meld"]
path = /usr/bin/meld
[color "status"]
added = 076
untracked = 014
[core]
pager = diff-so-fancy | less --tabs=8 -Rg -+FX -p'^(commit|added|deleted|modified|renamed|tag|(Submodule .* [a-f0-9]+[.]+[a-f0-9]+)|(stash@{[0-9]+}))[: ]'
excludesfile = ~/.config/git/ignore
[alias]
root = rev-parse --show-toplevel
spull = "__git_spull() { git pull \"$@\" && git submodule sync --recursive && git submodule update --init --recursive; }; __git_spull"
[status]
submodulesummary = true
[diff]
submodule = log
tool = nvimdiff
[rebase]
autostash = true
[include]
path = user.config
[pull]
rebase = true
[merge]
log = true
tool = nvimdiff