How can I commit a single file using SVN over a network?

前端 未结 6 500
挽巷
挽巷 2021-01-31 14:11

I am able to check out an entire svn repository using the following command:

svn co https://myaccount.svn.beanstalkapp.com/myapp/

6条回答
  •  無奈伤痛
    2021-01-31 15:00

    You have a file myFile.txt you want to commit.

    The right procedure is :

    1. Move to the file folder
    2. svn up
    3. svn commit myFile.txt -m "Insert here a commit message!!!"

    Hope this will help someone.

提交回复
热议问题