Svn: ignore without ignoring xcuserdata

I am using the svn: ignore property for the first time, so I might misunderstand something.

I am working on an iOS app. I have an Xcode project and I want to ignore the xcuserdata folder. Using the Mac Terminal application, I go to the root of my svn repository and try to ignore the folder using:

svn propset svn:ignore path/to/my/folder/MyProject.xcodeproj/xcuserdata .

If I check the svn: ignore property using:

svn propedit svn:ignore .

I see:

path/to/my/folder/MyProject.xcodeproj/xcuserdatata

I committed and updated, but I'm doing svn status, am I still seeing the folder with? mark next to it. Does anyone know what I'm doing wrong? I am using svn version 1.6.17 (r1128011).


, , : SVN , propset svn: ignore, , , , svn, , , ​​ svn.

+5
2

, :

svn propset svn:ignore xcuserdata path/to/my/folder/MyProject.xcodeproj

.. xcuserdata .

+10

. - subversion, ~/.subversion/config. , xcuserdata, ,

global-ignores = xcuserdata

, svn xcuserdata. , . , , global-ignores,

svn propset svn:global-ignores xcuserdata .

, .

0

All Articles