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

前端 未结 6 457
挽巷
挽巷 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 14:36

    You can use

    cd /You folder name
    svn commit 'your file path' -m "Commit message you want to give"
    

    You can also drage you files to command promt instead to write cd [common in MAC OSx]

提交回复
热议问题