Why doesn't the eclipse SVN command bar display all the options?

I am new to eclipse IDE. I made some changes to the code and want to check or copy my changes to svn. But when I right-click on a project and select a command option, I do not see parameters such as commit, update, etc. I searched the Internet about the problem and tried the following options,

  • unistalling and reinstalling subversive - svn team provider
  • start of eclipse with -Djava.util.Arrays.useLegacyMergeSort = true but nothing worked for me.

See the following figure for more information. SVN Team menu not working as expected

The details of the Eclipse IDE that I use are as follows: Version: Luna Service Release 1 (4.4.1) Build ID: 20140925-1800

I'm on a Windows 8.1 64-bit machine, if that matters. If anything else is required to resolve the error, let me know.

+6
source share
4 answers

You have launched "Team> Share Project ..." to tell SVN that this project is an SVN project before you can do anything else. After you set up sharing, other menu items will appear.

+7
source

Try importing the original project as an SVN project (via File> Import ...) directly from the repository (use the new project name if conflicts arise). Make sure the Team menu works for this project.

+3
source

I ran into the same problem with my workspace. Here is the solution

Right-click "myproject" and select "Command", then "Share." He should ask you what type of repository, and when you go to the next screen, he should indicate that he sees the existing SVN / directories, at that moment he should use this metadata to establish the link. You may also need to have the SVN repository installed (in the future, SVN Repositories).

+1
source

You should try to create a project from your SVN repository. for this:

File > New > Other > SVN > Repository Location 

In this window you will have all the settings to configure the use of your SVN client.

0
source

Source: https://habr.com/ru/post/981698/


All Articles