如何通过网络使用SVN提交单个文件?
问题描述:
我可以使用以下命令检出整个svn
存储库:
I am able to check out an entire svn
repository using the following command:
svn co https://myaccount.svn.beanstalkapp.com/myapp/
但是我无法弄清楚提交单个文件的命令.如果我要更改为myapp/page1.html
.
But I cannot figure out the command to commit a single file. If I make to change to myapp/page1.html
.
如何仅检入一个文件?
答
cd myapp/trunk
svn commit -m "commit message" page1.html
有关更多信息,请参见:
For more information, see:
svn commit --help
如果您刚开始使用Subversion,我还建议这本免费书.
I also recommend this free book, if you're just getting started with Subversion.