I am working on Windows 7. I have deleted a branch, b4, and then created a new branch with the same name on the repository. Now I am trying to check out the newly created branch, b4, which has the same name as before.
project
-branches
-b1
-b2
-b3
-trunk
If I issue svn command under project directory like this:
svn co http://XXXX/project/branches/b4 branches
I will get svn: E155000: 'D:\1-workspace\project\branches' is already a working copy for a different URL error.
I have also tried with TortoiseSVN but I got the same error as command line.
if I issue svn command like this:
svn co http://XXXX/project/branches/b4 branches\b4
I can checkout the code but there is a .svn folder under the b4 folder. I don't think it is what I want. There is already a .svn folder under the project folder. This extra folder may cause other problems.
I have looked at similar older answers here and here, but none works in my case.