Mercurial > hg
comparison tests/test-committer @ 3466:8b55c0ba8048
makes username mandatory
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Wed, 18 Oct 2006 22:24:03 +0200 |
parents | f1085d34d20d |
children | 98f2507c5551 |
comparison
equal
deleted
inserted
replaced
3465:2d35a8d2b32d | 3466:8b55c0ba8048 |
---|---|
8 cd test | 8 cd test |
9 touch asdf | 9 touch asdf |
10 hg add asdf | 10 hg add asdf |
11 hg commit -d '1000000 0' -m commit-1 | 11 hg commit -d '1000000 0' -m commit-1 |
12 hg tip | 12 hg tip |
13 | |
14 unset EMAIL | |
15 echo 1 > asdf | |
16 hg commit -d '1000000 0' -m commit-1 | |
17 hg commit -d '1000000 0' -u "foo@bar.com" -m commit-1 | |
18 hg tip | |
19 echo "[ui]" >> .hg/hgrc | |
20 echo "username = foobar <foo@bar.com>" >> .hg/hgrc | |
21 echo 12 > asdf | |
22 hg commit -d '1000000 0' -m commit-1 | |
23 hg tip | |
24 echo 1 > asdf | |
25 hg commit -d '1000000 0' -u "foo@bar.com" -m commit-1 | |
26 hg tip |