美文网首页
svn command

svn command

作者: fb69e982796d | 来源:发表于2021-03-24 13:30 被阅读0次

1、查看svn下账号认证
svn auth
2、删除svn认证账号
rm -rf auth

3、检出
svn checkout svn://路径(目录或文件的全路径)
svn update 在仓库路径下更新分支

4、添加新文件
svn add 文件名
5、提交
svn commint -m “message”

eg:
svn add test.php <- 添加test.php
svn commit -m “添加我的测试用test.php“ test.php
svn add *.php <- 添加当前目录下所有的php文件
svn commit -m “添加我的测试用全部php文件“ *.php

6、删除文件
svn delete 文件名

相关文章

网友评论

      本文标题:svn command

      本文链接:https://www.haomeiwen.com/subject/fzifhltx.html