action/test2
changeset 266 7cc208cbf2be
child 268 24145a4eb6fc
equal deleted inserted replaced
265:6629144cf111 266:7cc208cbf2be
       
     1 #!/bin/sh
       
     2 
       
     3 set -e
       
     4 
       
     5 cd
       
     6 
       
     7 cat > .ssh/config <<__END__
       
     8 Host chroothg
       
     9 Hostname localhost
       
    10 User hg
       
    11 Port 2222
       
    12 __END__
       
    13 
       
    14 hg clone ssh://chroothg/real/project
       
    15 cd project
       
    16 echo "and I'm adding something" >> content
       
    17 hg commit -u test2 -m "Added something to the file"
       
    18 hg push
       
    19 
       
    20