Is it possible to port over comments from one project to a new Repository structure? Meaning is there some sort of comment file you can port?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can migrate all repository data, including log messages and revision data, using the
svnadmin dumpandsvnadmin loadcommands. The--parent-diroption will help you control where in the new repository structure all that data is imported.For example if you currently have a repository for
Project1, and you want to import all that data intoMyCompanyRepository/Project1/trunk,See the Subversion book for details.