2019-12-10 02:24:31 +03:00
|
|
|
#chg-compatible
|
|
|
|
|
2020-01-20 13:42:49 +03:00
|
|
|
$ disable treemanifest
|
2017-02-10 05:02:52 +03:00
|
|
|
|
2015-04-02 19:58:46 +03:00
|
|
|
$ . "$TESTDIR/library.sh"
|
|
|
|
|
|
|
|
$ hginit master
|
|
|
|
$ cd master
|
|
|
|
$ cat >> .hg/hgrc <<EOF
|
|
|
|
> [remotefilelog]
|
|
|
|
> server=True
|
|
|
|
> EOF
|
|
|
|
$ echo x > x
|
|
|
|
$ echo z > z
|
|
|
|
$ hg commit -qAm x1
|
|
|
|
$ echo x2 > x
|
|
|
|
$ echo z2 > z
|
|
|
|
$ hg commit -qAm x2
|
|
|
|
$ hg bookmark foo
|
|
|
|
|
|
|
|
$ cd ..
|
|
|
|
|
|
|
|
# prefetch a revision w/ a sparse checkout
|
|
|
|
|
|
|
|
$ hgcloneshallow ssh://user@dummy/master shallow --noupdate
|
|
|
|
streaming all changes
|
2019-08-31 00:56:12 +03:00
|
|
|
3 files to transfer, * of data (glob)
|
2018-06-01 07:41:22 +03:00
|
|
|
transferred 527 bytes in * seconds (*/sec) (glob)
|
2015-04-02 19:58:46 +03:00
|
|
|
searching for changes
|
|
|
|
no changes found
|
|
|
|
$ cd shallow
|
2018-11-30 13:17:29 +03:00
|
|
|
$ printf "[extensions]\nsparse=\n" >> .hg/hgrc
|
2015-04-02 19:58:46 +03:00
|
|
|
|
|
|
|
$ hg sparse -I x
|
2020-07-07 00:00:16 +03:00
|
|
|
$ hg prefetch -r 'desc(x1)'
|
2020-01-09 18:44:55 +03:00
|
|
|
1 files fetched over 1 fetches - (1 misses, 0.00% hit ratio) over *s (glob) (?)
|
2015-04-02 19:58:46 +03:00
|
|
|
|
2020-07-07 00:00:16 +03:00
|
|
|
$ hg cat -r 'desc(x1)' x
|
2015-04-02 19:58:46 +03:00
|
|
|
x
|
|
|
|
|
|
|
|
$ hg sparse -I z
|
2020-07-07 00:00:16 +03:00
|
|
|
$ hg prefetch -r 'desc(x1)'
|
2020-01-09 18:44:55 +03:00
|
|
|
1 files fetched over 1 fetches - (1 misses, 0.00% hit ratio) over *s (glob) (?)
|
2015-04-02 19:58:46 +03:00
|
|
|
|
2020-07-07 00:00:16 +03:00
|
|
|
$ hg cat -r 'desc(x1)' z
|
2015-04-02 19:58:46 +03:00
|
|
|
z
|
|
|
|
|
|
|
|
# prefetch sparse only on pull when configured
|
|
|
|
|
|
|
|
$ printf "[remotefilelog]\npullprefetch=bookmark()\n" >> .hg/hgrc
|
2019-02-25 14:50:46 +03:00
|
|
|
$ hg debugstrip tip
|
2015-04-02 19:58:46 +03:00
|
|
|
|
|
|
|
$ hg sparse --delete z
|
|
|
|
|
|
|
|
$ clearcache
|
|
|
|
$ hg pull
|
|
|
|
pulling from ssh://user@dummy/master
|
|
|
|
searching for changes
|
|
|
|
adding changesets
|
|
|
|
adding manifests
|
|
|
|
adding file changes
|
|
|
|
added 1 changesets with 0 changes to 0 files
|
|
|
|
updating bookmark foo
|
|
|
|
prefetching file contents
|
2020-06-24 04:45:45 +03:00
|
|
|
1 files fetched over 1 fetches - (1 misses, 0.00% hit ratio) over *s (glob) (?)
|
2015-05-19 02:08:49 +03:00
|
|
|
|
|
|
|
# Dont consider filtered files when doing copy tracing
|
|
|
|
|
|
|
|
## Push an unrelated commit
|
|
|
|
$ cd ../
|
|
|
|
|
|
|
|
$ hgcloneshallow ssh://user@dummy/master shallow2
|
|
|
|
streaming all changes
|
2019-08-31 00:56:12 +03:00
|
|
|
3 files to transfer, * of data (glob)
|
2018-07-23 19:39:07 +03:00
|
|
|
transferred 527 bytes in * seconds (*) (glob)
|
2015-05-19 02:08:49 +03:00
|
|
|
searching for changes
|
|
|
|
no changes found
|
|
|
|
updating to branch default
|
|
|
|
2 files updated, 0 files merged, 0 files removed, 0 files unresolved
|
2020-01-09 18:44:55 +03:00
|
|
|
1 files fetched over 1 fetches - (1 misses, 0.00% hit ratio) over *s (glob) (?)
|
2015-05-19 02:08:49 +03:00
|
|
|
$ cd shallow2
|
2018-11-30 13:17:29 +03:00
|
|
|
$ printf "[extensions]\nsparse=\n" >> .hg/hgrc
|
2015-05-19 02:08:49 +03:00
|
|
|
|
2020-07-07 00:00:16 +03:00
|
|
|
$ hg up -q 'desc(x1)'
|
2020-01-09 18:44:55 +03:00
|
|
|
2 files fetched over 1 fetches - (2 misses, 0.00% hit ratio) over *s (glob) (?)
|
2015-05-19 02:08:49 +03:00
|
|
|
$ touch a
|
|
|
|
$ hg ci -Aqm a
|
|
|
|
$ hg push -q -f
|
|
|
|
|
|
|
|
## Pull the unrelated commit and rebase onto it - verify unrelated file was not
|
|
|
|
pulled
|
|
|
|
|
|
|
|
$ cd ../shallow
|
2020-07-07 00:00:16 +03:00
|
|
|
$ hg up -q 'desc(x2)'
|
2015-05-19 02:08:49 +03:00
|
|
|
$ hg pull -q
|
|
|
|
$ hg sparse -I z
|
2016-11-17 01:15:35 +03:00
|
|
|
$ clearcache
|
|
|
|
$ hg prefetch -r '. + .^' -I x -I z
|
2020-01-09 18:44:55 +03:00
|
|
|
4 files fetched over 1 fetches - (4 misses, 0.00% hit ratio) over * (glob) (?)
|
2020-07-07 00:00:16 +03:00
|
|
|
$ hg rebase -d 'desc(a)' --keep
|
2019-10-16 02:28:01 +03:00
|
|
|
rebasing 876b1317060d "x2" (foo)
|