I’ve recently decided to re-structure my svn repositories. This job includes lots of file/directory actions (renaming, copying, moving and deleting) in my repository. By default, each action is required to be committed in the context of a check-in. Is there any method to commit lots of these actions in a single check-in? I use TortoiseSVN and Collabnet Subversion 1.6.x.
feedback
|
|
TortoiseSVN has 2 different tools to work with:
The repository browser is a UI tool that works directly on the repository, and it does not know when you "begin and end a transaction". So each command is a commit in itself, if a commit is necessary. I do not know any possibility to say for example.
When you work with the TortoiseSVN windows menu integrated into your windows explorer, you first have to checkout the whole repository. Then you may work locally for some time, use the SVN variations for rename, move and copy, and after some time, commit all your changes at once. The command line version allows you both things, but it behaves the same. From the documentation for
So even when you write a batch file for doing all the stuff, and call that, each So there is no option to restructure your repository (with the repository browser only) with a single commit. You have to check out the whole repository (at least the part you want to restructure), do your Perhaps there could be an option with | |||||||||||||
feedback
|