Jason
Jason

Reputation: 12789

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 this foo/B/A. Is there a clean way to remove SVN references before doing this transition using a svn command.

Upvotes: 0

Views: 61

Answers (1)

Oliver Charlesworth
Oliver Charlesworth

Reputation: 272497

How about this?

svn mv foo/A foo/B/

Upvotes: 3

Related Questions