docs/tutorial/testlib/push-checkheads-util.sh
author Matt Harbison <matt_harbison@yahoo.com>
Sat, 22 Dec 2018 01:29:59 -0500
changeset 4321 00d1963f50e5
parent 3376 aad37ffd7d58
permissions -rw-r--r--
exthelper: remove '_' in final_xxx() function names to conform to hg style

# setup config and various utility to test new heads checks on push

. $TESTDIR/testlib/common.sh

cat >> $HGRCPATH <<EOF
[ui]
# simpler log output
logtemplate ="{node|short} ({phase}): {desc}\n"

[phases]
# non publishing server
publish=False

[extensions]
# we need to strip some changeset for some test cases
strip=
evolve=
EOF

setuprepos() {
    echo creating basic server and client repo
    hg init server
    cd server
    mkcommit root
    hg phase --public .
    mkcommit A0
    cd ..
    hg clone server client
}