Search code examples
eclipsesvnzend-studiosubversive

Subversive: can't commit files inside a tags folder


I'm using Zend Studio 6.1 for Eclipse, which comes bundled with the Subversive plug-in.

My repo layout is:

/trunk/
/branches/
/tags/

My application code is in:

/trunk/application

I'm trying to add some view templates in:

/trunk/application/views/tags/index.tpl

BUT Subversive won't let me commit any of the files in that folder. The message it gives me is:

"You are going to modify the tag on the repository. Do you want to continue?"

So I say "no". It seems to be confusing my 'tags' folder with SVN's concept of tags.

I can't rename the folder because the framework I'm using enforces strict naming conventions between controller & view. I have a tagsController, so my views must be in /views/tags

I could rename the controller to something other than 'tags', but that sucks, because a tag is a tag, not a schmag ;)

Any ideas on how to get around this?


Solution

  • I finally got it working. I can only assume it's a bug in the Zend Studio for Eclipse's Subversive plugin.

    If I try to commit by right clicking on the files in "PHP Explorer", it fails. If I "Override and Commit" via "Team -> Synchronize with Repository", it works fine.