X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vcs%2Fsetup.sh;h=3c04f595a54012dc696e50268aa19a2106384e31;hb=d105227b4987b9e743a72b82086b61693e00fb96;hp=664f938058b015881113d25f75b84854a7895be0;hpb=f2c6086838bcdf795c3322c27d78a6bfc49c9d4b;p=config%2Fdotfiles.git diff --git a/vcs/setup.sh b/vcs/setup.sh index 664f938..3c04f59 100755 --- a/vcs/setup.sh +++ b/vcs/setup.sh @@ -42,6 +42,12 @@ if installed git; then sed_i 's/log --patch/log -p/' gitconfig fi + if git stash push -- doesnt-exist 2>&1 \ + | grep 'usage: git stash list' > /dev/null; then + echo 'gitconfig: replacing "stash push" with "stash save"' + sed_i 's/stash push/stash save/g' gitconfig + fi + # If coloredstderr is used to color stderr then remove the workaround for # missing output to stderr. if test -n "${LD_PRELOAD:+set}" \ @@ -54,6 +60,11 @@ if installed git; then fi if installed tig; then + generate tigrc .in cat + if tig --version | grep '^tig version 2\.[012]' >/dev/null; then + echo 'tigrc: removing history options' + grep_i -v '^set history-size = ' tigrc + fi link tigrc ~/.tigrc fi