Ignore Project Subversion Files

Recently, I started work on a large project that contains a huge number of files. For some reason (which I don’t understand), the team decided not to use svn: ignore, and therefore, each developer should provide their own set of ignore options.

I use the TortoiseSVN client, and there is a way to do this (using the global ignore property), except that it will be applied to all other projects that I checked that I do not want.

Is there a way to ignore files for each project without using the svn: ignore parameter? Thanks for any help.

Change . I wanted to indicate that svn: ignore is not an option. The solution must be something local.

+3
source share
2 answers

Just use the ignore list. You can read about it in docs .

This sets up svn:ignore propertyfor the path, but you can apply it recursively if necessary.

Because properties are actually stored in the repository, other developers will not need to set their own ignore lists. They will automatically receive the same properties when they update working copies.

+1
source

TortoiseSVN svn:ignore . , , , svn:ignore .

" " .

+1

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


All Articles