Ignore a folder during SVN updates

前端 未结 5 970
轻奢々
轻奢々 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:45

    You could do an svn update and specifically mention every other directory, e.g.

    svn update dir1 dir2 dir3
    

    Or, grep -v out what you don't want.

    svn update `ls | grep -v big_dir`
    

    Or, svn mv the big_dir up into another folder and change your build system to get the content from the other directory.

提交回复
热议问题