X-Git-Url: https://git.distorted.org.uk/~mdw/profile/blobdiff_plain/9ca6d19073b277a53a08e45c7168023d3ebec895..e623f04118295c92c75eacaed5c50ce72fd108b6:/dot/gitconfig.in diff --git a/dot/gitconfig.in b/dot/gitconfig.in index 0ce73d3..9a55627 100644 --- a/dot/gitconfig.in +++ b/dot/gitconfig.in @@ -80,9 +80,6 @@ local = normal remote = cyan -[color "grep"] - external = --color=always - [column] ui = auto column dense @@ -92,6 +89,14 @@ diff = perl /usr/share/doc/git/contrib/diff-highlight/diff-highlight | mdw-pager [alias] + do = "!sh -e -c ' \ + quiet=; \ + case $#,$1 in 0, | *,*,*) ;; *,-q) quiet=--quiet; shift ;; esac; \ + case $quiet in ?*) ;; *) echo \"Entering toplevel\" ;; esac; \ + (name=\"\"; path=.; toplevel=$(pwd); \ + sha1=$(git rev-parse HEAD); \ + set +e; case $# in 1) eval \"$1\" ;; *) \"$@\" ;; esac); \ + exec git submodule $quiet foreach --recursive \"$@\"' do" egrep = "grep -E" graph = "log --pretty=oneline --abbrev-commit --graph" release = !"sh -e -c ' \ @@ -100,6 +105,18 @@ exit 1; \ }; \ git tag -as -m \"Release $1.\" \"$@\"' release" + catchup = !"perl -e ' \ + use autodie qw(:all); \ + if (@ARGV < 2) { \ + print STDERR \"git catchup REMOTE REF ...\n\"; \ + exit 2; \ + } \ + @c = (); $m = shift @ARGV; \ + for my $r (@ARGV) { \ + my ($p, $r) = $r =~ /^([+]*)(.*)$/; \ + push @c, \"$p$m/$r:$r\"; \ + } \ + exec \"git\", \"push\", \".\", @c'" amend = !"env EDITOR=true VISUAL=true git commit --amend -a" spaces = !"sh -e -c 'git ls-files -z \"$@\"| \ xargs -0r space -cv' spaces" @@ -137,6 +154,9 @@ signedoffbycc = yes suppresscc = self +[mailinfo] + scissors = true + [gui] fontui = -family Sans -size 10 fontdiff = -family Fixed -size 13