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

情到浓时终转凉″ 提交于 2019-12-20 09:14:11

问题


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

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

But I cannot figure out the command to commit a single file. If I make to change to myapp/page1.html.

How can I check in just that one file?


回答1:


cd myapp/trunk
svn commit -m "commit message" page1.html

For more information, see:

svn commit --help

I also recommend this free book, if you're just getting started with Subversion.




回答2:


strange that your command works, i thougth it would need a target directory. but it looks like it assumes current pwd as default.

cd myapp
svn ci page1.html

you can also just do svn ci in or on that folder and it will detect all changes automatically and give you a list of what will be checked in

man svn tells you the rest




回答3:


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.




回答4:


  1. svn add filename.html
  2. svn commit -m"your comment"
  3. You dont have to push



回答5:


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]




回答6:


this should work:

svn commit -m "<Your message here>" path/to/your/file

you can also add multiple files like this:

svn commit -m "<Your message here>" path/to/your/file [path/to/your/file] [path/to/your/file]


来源:https://stackoverflow.com/questions/6037033/how-can-i-commit-a-single-file-using-svn-over-a-network

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!