如果我使用以下方式重命名SVN分支:
$ svn move https://server/repos/myrepo/branches/oldbranch \
https://server/repos/myrepo/branches/newbranch
然后我创建一个与旧分支同名的新分支:
$ svn copy <source> https://server/repos/myrepo/branches/oldbranch
我是否弄乱了SVN存储库的历史记录,或者这是可以接受的操作?