tests/bzr-definitions
author Yuya Nishihara <yuya@tcha.org>
Thu, 04 Jan 2018 14:37:15 +0900
changeset 35688 84d0e99c063a
parent 26066 89872688893f
child 39250 7a88643bc0ef
permissions -rw-r--r--
log: replace "not pats" with matcher attribute for consistency We use match.always() in _makelogrevset(). match.always() is identical to "not pats" here since scmutil.matchandpats() empties pats in that case.

# this file holds the definitions that are used in various bzr tests

TERM=dumb; export TERM
echo '[extensions]' >> $HGRCPATH
echo 'convert = ' >> $HGRCPATH

glog()
{
    hg log -G --template '{rev}@{branch} "{desc|firstline}" files: {files}\n' "$@"
}

manifest()
{
    echo "% manifest of $2"
    hg -R $1 manifest -v -r $2
}