遇到的问题
svn仓库删除文件,结果远程仓库还存在文件副本。
解决方法
Please do not delete files and recreate new files with same name. Instead update them. If you delete a file, there are two problems.
- svn does not really delete it internally, it is still there.
- If you delete a file and recreate content with same file name
(instead of simply updating the file), you lose track of the change history.
If you want to move a file, don’t delete and recreate. Instead use svn mv
command.
不要使用鼠标删除,或者直接使用rm命令。
而是需要使用svn开头的命令,和git差不多。
svn rm filename
比如
$ svn rm ui
D ui
D ui\css
D ui\css\style.css
D ui\index.html
D ui\js
D ui\js\main.js
然后使用svn commit到远程repo即可。