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

前端 未结 6 454
挽巷
挽巷 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]

    0 讨论(0)
  • 2021-01-31 14:52
    1. svn add filename.html
    2. svn commit -m"your comment"
    3. You dont have to push
    0 讨论(0)
  • 2021-01-31 14:59
    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.

    0 讨论(0)
  • 2021-01-31 15:00

    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.

    0 讨论(0)
  • 2021-01-31 15:00

    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

    0 讨论(0)
  • 2021-01-31 15:02

    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]
    
    0 讨论(0)
提交回复
热议问题