How to move directories within svn
Currently my project is under foo with 2 sub modules foo/A and foo/B I have requirement to move A under B, so it looks like t开发者_如何学编程his foo/B/A. Is there a clean way to remove SVN references before doing this transition using a svn command.
How about this?
svn mv foo/A foo/B/
精彩评论