I have migrated my all SVN repositories to GIT/bitbcuket.
In one of project structure was not starndard SVN lay out and it was as below:
PROJECT
branches
Tags
ReleaseNotes
SubProject1
SubProject2
SubProject3
Trunk
I have restrcutred the project and make it standard layout as below:
PROJECT
Branches
Tags
Trunk
After restructure, in my SVN log, it shows me all svn log history for moved project.
But,
After migration to bitbucket. I am only able to see the last moved project history and all previous are not appearing as those are important to preserve for the project.
Please let me know any steps or your views to resolve this issue.
When you move data around in Subversion you break all the prior commit history. That means anytime you do a copy or move operation in SVN you lose the associated history of the directory. Typically you want to re-write all the svn history to the new path.
The only way to move a directory while preserving revision history is to dump the repository and re-write the paths with a utility like svn-dump-reloc, which will keep all the commit history of your repository for you.
I have mentioned required steps in below link which allows to execute command over windows machine.
http://stackoverflow.com/questions/13972693/svn-dump-reloc-use-in-windows-command-prompt
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have mentioned required steps in below link which allows to execute command over windows machine.
http://stackoverflow.com/questions/13972693/svn-dump-reloc-use-in-windows-command-prompt
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.