comparison tests/fixtures/copies.sh @ 962:8648ccfb8325

editor: process missing files with regular files Missing files were stored directly in RevisionMeta and resolved after the revision was replayed. It means the missing files set was no pruned by delete_entry() actions or by the filemap, and some of them were fetched for no reason. Say you convert: A branch/foo/bar (from trunk/foo/bar:123) with a filemap excluding "foo/bar". Since the directory was excluded in trunk the files cannot be found and were marked as missing even though they were discarded afterwards.
author Patrick Mezard <patrick@mezard.eu>
date Sat, 20 Oct 2012 22:22:02 +0200
parents 502613f6b583
children 64d961130a07
comparison
equal deleted inserted replaced
961:b729909d3793 962:8648ccfb8325
16 svn co $svnurl project 16 svn co $svnurl project
17 cd project 17 cd project
18 svn cp trunk/dir trunk/dir2 18 svn cp trunk/dir trunk/dir2
19 echo b >> trunk/dir2/a 19 echo b >> trunk/dir2/a
20 svn ci -m 'copy/edit trunk/dir/a' 20 svn ci -m 'copy/edit trunk/dir/a'
21 svn up
22 svn cp trunk/dir2 trunk/dir3
23 svn ci -m 'copy dir2 to dir3'
21 cd .. 24 cd ..
22 25
23 svnadmin dump testrepo > ../copies.svndump 26 svnadmin dump testrepo > ../copies.svndump