Reputation: 141672
We can add use Tortoise to ask subversion to ignore a directory by using the integration user interface as follows:
When it's done there is an alert:
[PowerShell]
svn proplist -R . | select-string ignore
Upvotes: 0
Views: 41
Reputation: 7385
1) You can set the property, in your example:
svn propset svn:ignore "WebAnalytics" .
If you have more than one property to add, you can use:
svn propedit svn:ignore .
2) It is stored at the properties of the according folder. The global ignore list is stored on your local machine at the registry:
HKEY_CURRENT_USER\Software\Tigris.org\Subversion\Config\miscellany
Upvotes: 1