1

I have project A in solution1 and project B in solution2. I want to add project B to solution1 with all the previous versions(commits) of the project B.

How can this be done?

bahrep
  • 29,961
  • 12
  • 103
  • 150
user2803056
  • 377
  • 4
  • 12
  • 1
    Your question is a little confusing... previous versions of what? Not sure also what svn has to do here... – Claudio Redi Aug 06 '14 at 18:12
  • 2
    Right click on the solution header, Add -> Existing Project, and select the project file. What do you mean by all the previous versions of project B? You can do this for all your branches/tags, however you cannot change SVN history. – jtimperley Aug 06 '14 at 18:12
  • 1
    Is your question "How do I create a branch in SVN"? – CodeCaster Aug 06 '14 at 18:24

1 Answers1

0

One solution would be to make Solution1/ProjectB an external link via svn:externals property on the local folder. This will yield one physical location and two logical locations in your repository.

Community
  • 1
  • 1
Ross Bush
  • 14,648
  • 2
  • 32
  • 55