tests/histedit-helpers.sh
author Siddharth Agarwal <sid0@fb.com>
Tue, 31 Mar 2015 19:34:37 -0700
changeset 24561 6514030dc686
parent 17085 35729bdd59b6
child 27350 890273343170
permissions -rw-r--r--
dirstate._normalize: don't construct dirfoldmap if not necessary Constructing the dirfoldmap is expensive, so if there's a hit in the filefoldmap, don't construct the directory foldmap. This helps with cases like 'hg add foo' where foo is already tracked: for a large repository, the operation goes from 1.5 seconds to 1.2 (which is still way too much, but that's a matter for another day.)

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"
}