How to delete or clear the svn:ignore list from base repository recursively. I want to clear all svn:ignore

一曲冷凌霜 提交于 2020-05-30 08:12:08

问题


How to delete or clear the svn:ignore list from base repository recursively. Basically I want no filter or files in the ignore list without having to track down every single file and create them to unignore them individually.

A previous developper added a bunch of files to the ignore list at random levels of the repository and I want to remove ALL elements of the ignore list.

Don't want to do it manually for each single file/folder.


回答1:


Get all definitions: $ svn propget -R svn:ignore . and delete with svn propdel




回答2:


Setting an empty svn:ignore property in the top-level folder and checking the Apply property recursively option seems to do the trick:

Add Properties

It only changes the folders that already had the property set and it seems to actually remove the property altogether.



来源:https://stackoverflow.com/questions/56892316/how-to-delete-or-clear-the-svnignore-list-from-base-repository-recursively-i-w

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!