##// END OF EJS Templates
sparse: demonstrate a bug when used with safe-share...
Arseniy Alekseyev -
r49325:50330d48 stable
parent child Browse files
Show More
@@ -0,0 +1,25 b''
1 Same with share-safe
2
3 $ echo "[format]" >> $HGRCPATH
4 $ echo "use-share-safe = True" >> $HGRCPATH
5
6 $ cd $TESTTMP
7
8 $ hg init myrepo
9 $ cd myrepo
10 $ cat > .hg/hgrc <<EOF
11 > [extensions]
12 > sparse=
13 > EOF
14
15 $ echo a > show
16 $ echo x > hide
17 $ hg ci -Aqm 'initial'
18
19 Verify basic --include
20
21 $ hg up -q 0
22 $ hg debugsparse --include 'hide'
23 devel-warn: write with no lock: "requires" at: *mercurial/scmutil.py:1558 (writerequires) (glob)
24
25 TODO: bug in sparse when used together with safe-share^
General Comments 0
You need to be logged in to leave comments. Login now