How to remove one svn: ignore rule?

Say I have a directory running SVN, and I have LOT svn: ignore rules defined for this directory. I want to remove only one of these rules. How can I achieve this?

I found a command line solution to remove all the rules, but this is not for me :)

PS: any solution will do: command line, eclipse, Tortoise

+3
source share
3 answers

If tou uses TortoiseSVN, you probably expect some GUI to do this, so:

right-click in the directory you want to edit, then TortoiseSVN> Properties

And use the buttons and list there.

+4
source
svn propedit svn:ignore .

. , . .

+5
svn propedit svn:ignore PATH

This will allow you to edit the value. If you need a long version, you can:

svn propget svn:ignore PATH

Then create your own version, if you want, and do the following:

svn propset svn:ignore YOUR_NEW_VALUE PATH
+2
source

Source: https://habr.com/ru/post/1793973/


All Articles