How do you configure the svn turtle settings for all users in the project?

We use subversion to store all our source code. We use the Tortoise SVN client to retrieve files from a subversion server. The source of a common problem for developers is that the Global Ignore Pattern settings are not the same for all development machines. How we control the distribution of specific parameters of the turtle project on all the machines of the developer (note: all of our computers use Win XP)

+3
source share
2 answers

Save svn: ignore your project. Right-click on the folder, select "Properties", then select the "Subversion" tab, then click "Properties ...", in the next dialog box, click "Create ...". Choose svn: ignore from the drop-down list and enter all the elements in separate lines:

*. Suo

*. User

Ben

+2
source

I think you are using the global template ignore function incorrectly - it should really be used for things specific to developers. Use the svn: ignore property instead, so it is stored in the repository. I know that pain should install it in every directory: (.

Tortoise , "Tortoise SVN" โ†’ " ", , .

+3

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


All Articles