tests/test-committer
changeset 11801 dedf7c811436
parent 11800 88c3ff051270
child 11802 d26b7cc96bc4
equal deleted inserted replaced
11800:88c3ff051270 11801:dedf7c811436
     1 #!/bin/sh
       
     2 
       
     3 unset HGUSER
       
     4 EMAIL="My Name <myname@example.com>"
       
     5 export EMAIL
       
     6 
       
     7 hg init test
       
     8 cd test
       
     9 touch asdf
       
    10 hg add asdf
       
    11 hg commit -d '1000000 0' -m commit-1
       
    12 hg tip
       
    13 
       
    14 unset EMAIL
       
    15 echo 1234 > asdf
       
    16 hg commit -d '1000000 0' -u "foo@bar.com" -m commit-1
       
    17 hg tip
       
    18 echo "[ui]" >> .hg/hgrc
       
    19 echo "username = foobar <foo@bar.com>" >> .hg/hgrc
       
    20 echo 12 > asdf
       
    21 hg commit -d '1000000 0' -m commit-1
       
    22 hg tip
       
    23 echo 1 > asdf
       
    24 hg commit -d '1000000 0' -u "foo@bar.com" -m commit-1
       
    25 hg tip
       
    26 echo 123 > asdf
       
    27 echo "[ui]" > .hg/hgrc
       
    28 echo "username = " >> .hg/hgrc
       
    29 hg commit -d '1000000 0' -m commit-1
       
    30 rm .hg/hgrc
       
    31 hg commit -d '1000000 0' -m commit-1 2>&1 | sed -e "s/'[^']*'/user@host/"
       
    32 
       
    33 echo space > asdf
       
    34 hg commit -d '1000000 0' -u ' ' -m commit-1
       
    35 
       
    36 true