linux svn management source

linux svn management source

1. Download svn first.

Input: sudo apt-get install subversion

2. svn checkout address

  Download the code from the address

3. Upload the new file. Now copy the new file locally to the project folder.

Then enter in the project directory:

svn add file name

svn commit -m "remarks"

4. If you want to modify the code, you can modify it locally and upload it.

Input: svn commit -m "remarks"

5. To delete the file, enter:

svn delete file name

svn commit -m "remarks"

6. If the file is deleted by mistake 

Direct svn up or svn revert -r version


 

Guess you like

Origin blog.csdn.net/baidu_40808339/article/details/108710230