Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
考虑以下颠覆目录结构
/dir1/file.txt
/dir2/file.txt
我想移动 dir1 中的 file.txt 以替换 dir2 中的相同文件,并确保保留 dir1 文件的历史记录。我不关心原始 dir2 文件的历史。
这可以使用颠覆命令而不是破解后端吗?
首先,您永远不应该考虑破解后端 - 它首先否定了使用 SVN 的意义。
我不明白为什么你不能做
svn rm /dir2/file.txt svn mv /dir1/file.txt /dir2/file.txt
文件的历史将在移动后跟随它。
尝试