tests/test-username-newline
author Patrick Mezard <pmezard@gmail.com>
Sun, 04 Oct 2009 23:06:14 +0200
changeset 9527 b3c13e721593
parent 7035 9d023ef7b467
permissions -rwxr-xr-x
convert/darcs: handle directory renaming

#!/bin/sh
#

hg init foo
cd foo
touch a


unset HGUSER
echo "[ui]" >> .hg/hgrc
echo "username= foo" >> .hg/hgrc
echo "          bar1" >> .hg/hgrc

hg ci -Am m

rm .hg/hgrc

HGUSER=`(echo foo; echo bar2)` hg ci -Am m

hg ci -Am m -u "`(echo foo; echo bar3)`"

true