tests/histedit-helpers.sh
author Yuya Nishihara <yuya@tcha.org>
Sat, 21 Oct 2017 16:50:57 +0900
changeset 34964 7ebf850d3166
parent 27350 890273343170
permissions -rw-r--r--
patch: improve heuristics to not take the word "diff" as header (issue1879) The word "diff" is likely to appear in a commit message. Let's make it less likely by requiring "diff -" for "diff -r" or "diff --git".

fixbundle() {
    grep -v 'saving bundle' | grep -v 'saved backup' | \
        grep -v added | grep -v adding | \
        grep -v "unable to find 'e' for patching" | \
        grep -v "e: No such file or directory" | \
    cat
}