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?
You have a file myFile.txt you want to commit.
The right procedure is :
svn up
svn commit myFile.txt -m "Insert here a commit message!!!"
Hope this will help someone.
You can use
You can also drage you files to command promt instead to write cd [common in MAC OSx]
strange that your command works, i thougth it would need a target directory. but it looks like it assumes current pwd as default.
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 inman svn
tells you the restFor more information, see:
I also recommend this free book, if you're just getting started with Subversion.
this should work:
you can also add multiple files like this:
svn add filename.html
svn commit -m"your comment"