当前位置:网站首页>Svn simple operation command

Svn simple operation command

2022-04-23 17:58:00 Feng Ye 520

1. establish stu Server for
svnadmin create D:\Repositories\stu
( Anonymous users can write )


2. Start the server
svnserve -d -r D:\Repositories\stu


3. Access server ( In the command line under the client )
svn checkout svn://localhost


4. Add test documents to svn
svn add Test documentation .txt


5. Incorporate test documents into management
svn commit Test documentation .txt -m " demand -->pm"


6. The sub client takes the test document ( Command line under sub client )
svn checkout svn://localhost
svn update


7. Upload all files of this client to the server ( Under the command line of this client )
a:svn add *
b:svn commit -m " Notes "
 

版权声明
本文为[Feng Ye 520]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204230546134105.html