I want to take SVN dump of http://svn.apache.org/repos/asf/lucene/dev/trunk. Since lucene is a project I can't take dump of repo. Please advice best way to replicate the above repo to local machine. Warm Regards, Allahbaksh
|
feedback
|
|
One way to clone an entire Subversion project (with full history) is to use Git's Subversion bridge:
By default this will get the entire history of the trunk in Subversion. Be aware that depending on the size, longevity, and complexity of the Subversion repository, this command may take some time to run. | |||
|
feedback
|
|
One option is to first create a local repository:
Once you've created the repository, initialize it for syncing:
Now that you're setup for syncing, sync to the new repository:
When you don't want to keep the whole repository because you only need a single subdirectory, but you still want the whole history in subversion, you can then create a repository containing only the relevant sections:
We now have a backup that has been filtered to include only the relevant tree. So, now let's restore that to a new, usable repository:
See the help on svnsync, on repository replication, and repository filtering. | |||||
feedback
|
|
You can use the svn command line tool.
or
Use the first if you want a disconnected dump. Use the second if you want to update and commit. | |||
feedback
|