遇到的问题解决方法
遇到的问题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 uicss D uicssstyle.css D uiindex.html D uijs D uijsmain.js
然后使用svn commit到远程repo即可。



