How do I add File to SVN without Checking out

前端 未结 4 645
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-03 18:29

I would like to add a file to a remote svn repository without checking out the project.

svn add requires the project to be checked out

sv

4条回答
  •  走了就别回头了
    2021-01-03 18:56

    You should be able to use svn import:

    $ svn help import
    import: Commit an unversioned file or tree into the repository.
    

    Import is able to add individual files and trees to a repository.

提交回复
热议问题