This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 184976 - Problems with SVN:IGNORE
Summary: Problems with SVN:IGNORE
Status: NEW
Alias: None
Product: versioncontrol
Classification: Unclassified
Component: Subversion (show other bugs)
Version: -S1S-
Hardware: PC Windows Vista
: P3 normal (vote)
Assignee: Ondrej Vrabec
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-04-26 12:05 UTC by akiliyevich
Modified: 2010-04-26 12:05 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description akiliyevich 2010-04-26 12:05:37 UTC
The Subversion plugin for Netbeans adds a file to ignore list if it is not shareable:

Subversion.java:

boolean isIgnored(File file) { 
//.... SKIPPED .....

if (SharabilityQuery.getSharability(file) == SharabilityQuery.NOT_SHARABLE) {
//.... SKIPPED .....
    IgnoreAction.ignore(file);

It creates some problems:
1. Often tree conflicts
2. Some directories are marked as modified in the Project tree though they are not modified, deleted neither added files on the SVN (in fact, the svn:ignore attribute is the only modified one).

Is it possible to avoid adding files to ignore list?
For example, always use SharabilityQuery for checking file sharability.