Dear All,
I need to take the backup of one folder of my SVN repository. for this i have tried with svndump and svndumpfilter commands but of no use.
Can any one pls. explain how to do this with an example.
Thanks Mohan
|
|
|
|
|
Dear Seth, yes i have done the same with my respository. when i use the svndumpfilter its doing something but in the last its not creating any filtered dump file !!. Anyway i will try this again let you know Thank you very much Mohan |
||
|
|
|
|
Based on your followup, what you're wanting to do is to generate two new repositories from the single origin repo. The SVN red book explains this well: http://svnbook.red-bean.com/nightly/en/svn.reposadmin.maint.html#svn.reposadmin.maint.filtering In a nutshell, you start with an origin repo and create a dumpfile, and then use svndumpfilter to generate the two filtered dumpfiles (one with Test, one without).
If you're feeling frisky, you can edit the two filtered dumpfiles to exclude the root node creations statements (talked about in the docs link). Create the new repos:
Now, load the dumpfiles:
Now, you have the two new repos, so you suspend development in the origin repo and move to using the neworigin and testrepo repos. From there, you can use svnadmin dump to generate the dumpfiles for just the testrepo and put the dumpfile in your normal backup procedure.
|
||
|
|
|
|
Dear All, Thank you for your reply. I am sorry i was not clear i guess and my requirement is .... i have a repository in that i have one folder say "Test". Apart from this "test" there are some more folders/projects in my repository. If i want to take the full backup of my repository its consuming more memory (30 gb) so i want to shift only the "Test" folder with the history to another repository so that i can take the regular backups of only the "Test" folder (new repository) as it will take less memory. (i don't need to take the regular backups of other folders except "Test") How can i do this? pls. help me in this regard Mohan |
||
|
|
|
|
If what you're wanting is a backup of the current state of the files themselves (and don't actually want the full version history), use If you are trying to back up the history, then I concur with Rohith's answer. |
||
|
|
|
|
Since SVN versions the whole tree every time a commit is made, you're likely to run into trouble if you try to backup only a portion of the source tree and then try to restore that backup. |
||||
|
svndumpfilter, and to use that separately but that would be very odd. You would keep the history but everything new on that part will not have the ability to go back to the original repository. Please confirm what you exactly want to do with that backup and I'd happily give an example, but Dav's answer is most probably what you mean. – RedGlyph Nov 6 at 13:10