Ignore a folder during SVN updates

前端 未结 5 983
轻奢々
轻奢々 2021-01-30 16:41

If I svn:ignore a really big folder will it improve performance during SVN updates?

I have this really massive (>600MB) folder in my project. The files in this folder sh

5条回答
  •  终归单人心
    2021-01-30 17:29

    Apart from what @Bill Brasky said, one suggestion is to move the huge folder into an external. That way you can do svn up --ignore-externals

    If you don't want the huge folder in your working copy, you can have a look at sparse checkouts:

    svn checkout repo . --depth empty
    svn up other dirs
    

提交回复
热议问题