[issue2121] Operations from cloned bundle leave temporary files around

Cédric Duval <bugs@mercurial.selenic.com> at mercurial.selenic.com Cédric Duval <bugs@mercurial.selenic.com> at mercurial.selenic.com
Wed Mar 31 21:01:58 UTC 2010


New submission from Cédric Duval <cedricduval at free.fr>:

% cat testcase.sh
#!/bin/sh
rm -rf foo foo.bundle foo.bundlecloned
hg init foo
echo a > foo/a
hg -q -R foo ci -Am "added a"
hg -q -R foo bundle --all foo.bundle
hg -q clone foo.bundle foo.bundlecloned
cd foo.bundlecloned
ls .hg | grep bundle | wc -l
for cmd in outgoing incoming pull push; do
    hg -q $cmd ../foo.bundle
done
ls .hg | grep bundle | wc -l

% ./testcase.sh
0
5

(which I noticed when a few 'hg out' filled my disk, while working from a
cloned bundle)

----------
messages: 12196
nosy: cedric
priority: bug
status: unread
title: Operations from cloned bundle leave temporary files around

____________________________________________________
Mercurial issue tracker <bugs at mercurial.selenic.com>
<http://mercurial.selenic.com/bts/issue2121>
____________________________________________________


More information about the Mercurial-devel mailing list