How do I ignore a directory with SVN?

前端 未结 23 2532
无人共我
无人共我 2020-11-22 16:42

I just started using SVN, and I have a cache directory that I don\'t need under source control. How can I ignore the whole directory/folder with SVN?

I am using Vers

23条回答
  •  Happy的楠姐
    2020-11-22 17:11

    If your project directory is named /Project, and your cache directory is named /Project/Cache, then you need to set a subversion property on /Project. The property name should be "svn:ignore" and the property value should be "Cache".

    Refer to this page in the Subversion manual for more on properties.

提交回复
热议问题