Menu
  • HOME
  • TAGS

Subversive Plugin Eclipse sync with FTP?

php,eclipse,svn,ftp,subversive

Administrator failed in the installation in giving me the wrong IP, so I couldnt interact with the server.

Subversive: cannot see version control visuals in Package Explorer

eclipse,svn,subversive

Look in Preferences > General > Appearance > Label Decorations and make sure SVN is checked. Look in Preferences > Team > SVN > Label Decorations and check which SVN decorations are enabled....

Why Subversive is not displaying complete SVN revision history?

eclipse,svn,eclipse-kepler,subversive,revision-history

There should be "Show next 25" and "Show all" buttons in History view toolbar: https://eclipse.org/subversive/documentation/teamSupport/history_view.php...

Eclipse: how to distinguish between public comments and private comments in my code?

java,eclipse,svn,comments,subversive

Create files with the same base name, but the extension .notes. Thus the class named Plover would be declared in Plover.hpp, defined in Plover.cpp and your private notes would be in Plover.notes. You can then tell SVN not to check in your notes file using a command like: svn propset...

Eclipse/Luna displays previous repository location

eclipse,subversive

Open the 'SVN Repositories' view. Right click on the repository and select the 'Location Properties'. You probably have a 'custom label' set which refers to the old repository name, change this to the new name.

SVN Merge from branch to trunk is not working as expected

svn,subversive,svn-merge

Though I was not able to identify the main cause of the problem but my Subversive plug-in was 6 years old and that could be a possible reason. The way I created branch was perfectly correct and to verify that I ended up installing Subclipse plug-in instead and using Team...

Subclipse not showing the SVN data in package explorer and team options not available

eclipse,subclipse,subversive

If you do not see the Share Project option in the Team menu, then I would guess the issue is that you are reusing an existing workspace and you had Subversive plugin, not Subclipse installed, and these projects were already connected to Subversive. So the Eclipse framework thinks it is...

SVN : How Subversion deals with committing multiple files at once?

svn,revision,subversive

Of-course we have to commit multiple files at once most of the time. Development of a feature or a bug fix consists of changes in multiple files and they should be committed at once as a good practice with a clear message on what the change is about. It gives...

Corrupted elements for SVN commit

svn,lotus-domino,subversive,domino-designer-eclipse

Problem solved! Be careful to have "Use binary DXL for source control operation" flag checked in Designer -> Source Control preferences. Infact, it seems that if you don't have it, the export of the element lose some data....

Does `svn info` command hit my svn server to find the server revision number?

linux,svn,subversive

The last revision is stored locally in your local svn repository cache. There is no request sent to the server when you run svn info. The revision is downloaded when you run svn update. Therefore, it may not be up-to-date. If we turn off the network, svn info still works....

Subversive makes Eclipse go out of sync?

java,eclipse,svn,subclipse,subversive

After more testing, we were able to determine the following: Any command that involves moving/renaming/deleting files will cause this problem. In a workspace with few projects (<50), this problem doesn't appear. Disabling SVN Caching fixes this problem, but leads to unacceptable performance problems. Uninstalling Subversive and installing Subclipse (into the...

After accidentally removing file and adding it back I can't compare anymore

svn,subversive

I solved it the following way: Made a backup copy of the file Reverted the local file in svn Copied the backup over the reverted file Now everything is back to normal. ...