php,eclipse,svn,ftp,subversive
Administrator failed in the installation in giving me the wrong IP, so I couldnt interact with the server.
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....
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...
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...
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.
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...
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...
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...
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....
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....
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...
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. ...