Ignore a folder during SVN updates

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

    Just do :

    svn up `svn ls | grep -v big_dir`
    

    Using "svn ls" You could update not only locally existing directories and files, but new files from repository. So, update is more complete, than just exclude. And You don't need to delete already existing files, like "--set-depth exclude" apparently does.

提交回复
热议问题