How do I use Eclipse Refactoring Tools and stay in sync with SVN through Subclipse? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T23:22:20Z http://stackoverflow.com/feeds/question/517752 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/517752/how-do-i-use-eclipse-refactoring-tools-and-stay-in-sync-with-svn-through-subclips 2 How do I use Eclipse Refactoring Tools and stay in sync with SVN through Subclipse? Nicholas 2009-02-05T20:24:32Z 2009-02-20T19:02:57Z <p>I have found that when I need to rename a Java class (and therefore the source file) or need to change the package name (and therefore move the source file[s]), I can either:</p> <ol> <li>Use the nice and useful Eclipse refactoring tools which is great since all the cascading tasks are done for me. However, I then have an uphill struggle with Subversion to replicate the changes back to the repo.</li> <li>I can issue the renames/moves in Subversion first, update my local and then the refactoring tools in Eclipse don't work.</li> </ol> <p>Can anyone advise on a preferable procedure?</p> http://stackoverflow.com/questions/517752/how-do-i-use-eclipse-refactoring-tools-and-stay-in-sync-with-svn-through-subclips/517782#517782 1 Answer by Stephen Pape for How do I use Eclipse Refactoring Tools and stay in sync with SVN through Subclipse? Stephen Pape 2009-02-05T20:31:33Z 2009-02-05T20:37:45Z <p>Have you tried <a href="http://www.eclipse.org/subversive/" rel="nofollow">subversive</a> ? Refactoring seems to work fine for me with it.</p> <p>Actually, I've tried subclipse too, and it seems to handle it fine, at least with version 1.4.7. I just tried renaming a package and a class. Eclipse marks the old one as deleted and adds a new one, scheduled to be added to the repository.</p> http://stackoverflow.com/questions/517752/how-do-i-use-eclipse-refactoring-tools-and-stay-in-sync-with-svn-through-subclips/517791#517791 0 Answer by Stefan for How do I use Eclipse Refactoring Tools and stay in sync with SVN through Subclipse? Stefan 2009-02-05T20:33:30Z 2009-02-05T20:33:30Z <p>Install <a href="http://subclipse.tigris.org/" rel="nofollow">Subclipse</a>, it will take care of the svn moves/renames when you refactor in Eclipse.</p> http://stackoverflow.com/questions/517752/how-do-i-use-eclipse-refactoring-tools-and-stay-in-sync-with-svn-through-subclips/517873#517873 3 Answer by John for How do I use Eclipse Refactoring Tools and stay in sync with SVN through Subclipse? John 2009-02-05T20:56:41Z 2009-02-05T20:56:41Z <p>I hate to walk in and say 'ur doin it rong', but since your subject line mention Subclipse - Subclipse integrates with Eclipse's refactoring tools. So does Subversive. When you rename a class, it executes the 'svn mv' for you underneath. You should never need to attempt to replicate those moves manually.</p> <p>I wonder if for some reason Subclipse is not attaching to your project - if it doesn't know your project's a Subversion project. Then obviously it wouldn't do anything.</p> <p>If you're not using Subclipse/Subversive... start. :)</p> http://stackoverflow.com/questions/517752/how-do-i-use-eclipse-refactoring-tools-and-stay-in-sync-with-svn-through-subclips/518681#518681 2 Answer by Mark Phippard for How do I use Eclipse Refactoring Tools and stay in sync with SVN through Subclipse? Mark Phippard 2009-02-06T00:49:08Z 2009-02-06T00:49:08Z <p>Since the 1.4.x releases, Subclipse handles this pretty well. If you have bugs, please report them. In prior releases it handled some situations but not others. This was due to Subversion limitations that were fixed in SVN 1.5. For example, prior to SVN 1.5, if you renamed a folder, you could not also rename a file in the folder (until the folder was committed). These sorts of things were all very common refactorings and SVN would get in the way.</p> <p>It all works pretty well now though.</p> <p>Mark</p>