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

前端 未结 6 455
挽巷
挽巷 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:02

    this should work:

    svn commit -m "" path/to/your/file
    

    you can also add multiple files like this:

    svn commit -m "" path/to/your/file [path/to/your/file] [path/to/your/file]
    

提交回复
热议问题