svn命令行添加和删除文件
添加文件:
svn add test.cpp
svn ci -m "add test" test.cpp
?
删除文件:
svn delete test.cpp
svn ci -m "svn test.cpp is deleted"