##// END OF EJS Templates
Show nice short hashes in hgweb...
Show nice short hashes in hgweb -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Show nice short hashes in hgweb manifest hash: c73a8e32a823af7ea7440d1db2b0c022a4366bb5 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCsQpkywK+sNU5EO8RAmSIAJ40aYEFBi07drKuPLuofXNaUkEFtgCghC9g mG8mmhucbBe4hcZWL0AdG8I= =Khp7 -----END PGP SIGNATURE-----

File last commit:

r350:b4e0e206 merge default
r375:b2921938 default
Show More
test-pull
24 lines | 231 B | text/plain | TextLexer
#!/bin/bash
set -e
mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit -t "1"
hg verify
hg serve 2>/dev/null &
C=$!
cd ..
mkdir copy
cd copy
hg init http://localhost:8000/
hg verify
hg co
cat foo
hg manifest
kill $C