SVN Ignore Files Anywhere in the Project

so I started using Subversion and am confused with ignore files.

From what I read, I can ignore the files in the directory with propedit / propset. However, I added a rule to ignore files starting with a period (swap files for VIM, which sometimes remain valid), but then it would seem to me that I should apply this rule to every directory and subdirectory in the project.

Does anyone know how to make the operator ignore the template file recursively use SVN?

here is my super simple ignore (I assume SVN uses GLOB, not RE):

. * 

and my project looks something like this:

project /
  application /
     models /
     views /
        form1 /
        form2 /
     config /
     controllers / 
     libraries /
     plugins /
     helpers /
  css /

. , .

, , subversion ~/.subversion/, , , .

+3
2

svn propset --recursive svn:ignore .* .

+7

, propset --recursive , / . , .subversion/config, , , , svn /.

. stackoverflow: svn?

0

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


All Articles