##// END OF EJS Templates
Output Content-encoding for tar.gz and tar.bz2 snapshots...
Output Content-encoding for tar.gz and tar.bz2 snapshots If the HTTP header 'Content-encoding' is missing for tar.gz snapshots, some gzip capable proxies can bork the tarball and serve unusable files to users. GZ tarballs are served using Content-encoding: gzip. BZ2 tarballs are served using Content-encoding: x-bzip2.

File last commit:

r936:b62d1e73 default
r1185:2ae9c319 default
Show More
test-remove
13 lines | 139 B | text/plain | TextLexer
#!/bin/sh
hg init a
cd a
echo a > foo
hg add foo
hg commit -m 1 -d "0 0"
rm foo
hg remove foo
hg commit -m 2 -d "0 0"
cd ..
hg clone a b