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 256804 - Checkouts in a subfolder of an svn:ignored folder are not recognised
Summary: Checkouts in a subfolder of an svn:ignored folder are not recognised
Status: NEW
Alias: None
Product: versioncontrol
Classification: Unclassified
Component: Subversion (show other bugs)
Version: 8.1
Hardware: PC Linux
: P3 normal (vote)
Assignee: Ondrej Vrabec
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-11-26 10:44 UTC by algopyryn
Modified: 2015-11-26 10:44 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description algopyryn 2015-11-26 10:44:41 UTC
For development reasons, we use the following folder structure:
app_root*
|-checkouts
| |-core_module*
| |-plugin_payment
| | \-core_module*
| |-plugin_registration
| | \-core_module*
...

the folders marged with an asterisk are separate checkouts. We also have '*' set for the svn:ignore property on checkouts. While previously Netbeans correctly recognised all checkouts as SVN folders, from 8.1 the core_module folders within the plugin subdirectories are not recognised.

This was working properly with version 1.37.1.42.1 of the subversion plugin, and if I copy that version from NB 8.0.2 to NB 8.1 it works correctly. (I'm using the 64bit PHP bundle of Netbeans)


Steps to replicate:
svn co [repository]/app_root app_root
mkdir app_root/checkouts
svn propset svn:ignore '*' app_root/checkouts
mkdir app_root/plugin_payment
svn co [repository]/plugin_payment app_root/checkouts/plugin_payment/core_module