comparison tests/fixtures/commit-to-tag.sh @ 547:9e6499c415a9

tags: fix files edited during tag creation This was broken because file edits were skipped if they were in tags, but committags in svnmeta didn't check to see if any files were changed during initial tag creation.
author Augie Fackler <durin42@gmail.com>
date Sat, 06 Feb 2010 10:36:21 -0600
parents bb612e625be6
children
comparison
equal deleted inserted replaced
546:d84116dda52d 547:9e6499c415a9
62 # try and revert will-edit to its original state 62 # try and revert will-edit to its original state
63 svn up 63 svn up
64 svn merge -r9:8 $REPOPATH . 64 svn merge -r9:8 $REPOPATH .
65 svn ci -m 'Revert revision 9.' 65 svn ci -m 'Revert revision 9.'
66 66
67 # make a tag from a branch and edit it at the same time
68 svn up
69 svn cp branches/magic tags/edit-at-create
70 echo alpha >> tags/edit-at-create/alpha
71 svn ci -m 'make a tag from a branch and edit it at the same time'
67 72
68 cd ../.. 73 cd ../..
69 svnadmin dump temp/repo > commit-to-tag.svndump 74 svnadmin dump temp/repo > commit-to-tag.svndump
70 echo 75 echo
71 echo 'Complete.' 76 echo 'Complete.'