svn 常用命令
检出项目: svn.exe checkout https://song/svn/test/ testsvn --username=test (只需要第一次输入密码,以后会自动保存) //更改文件名 相当于copy delete 此时还没有提交到服务端哦 svn mv a.txt b.txt //提交更改 svn commit -m "rename a.txt" svn地址的多种形式 svn:// http:// file:// https:// svn+ssh:// svn.exe status 查看文件的状态 A add in your working copy D delete in your working copy I ignored in your working copy M modify in your working copy ? not under version control ! miss from your working copy(手工删除文件,还没有提交)