Solve the common Eclipse SVN plug in error reporting method

  • 2020-04-01 02:02:47
  • OfStack

In the process of learning SVN, you often encounter SVN plug-in problems, this article introduces the common Eclipse SVN plug-in error information problems when installing SVN plug-in, I hope this article is helpful for your learning.

AD:

This section and you to see the installation of SVN plug-in in the process of common Eclipse SVN plug-in error information, and share with you, hope that through the introduction of this section you know how to deal with when SVN plug-in error.

Common Eclipse SVN plug-in error information:

1, update - rHEADD: / dev/workforce
Workingcopynotlocked; Thisisprobablyabug, pleasereport
SVN: Directory 'D: \ JavaWorkshop \ workforce \ web \ web - INF \ classes \ com \. SVN' containingworkingcopyadminareaismissing this question mainly is a question which the web - INF, web - INF delete the update again.

2. SVN changes the user and password.
Remove C:\DocumentsandSettings\Administrator\ApplicationData\Subversion and proceed.
If you have TortoiseSVN clients installed, you can also clear user information from them.
--------------------------

Use MyEclipse for Java development and SVN for version control.

After the code has been modified, Commit is executed, and then Update is executed.
Org. Tigrissubversionjavahl. ClientException: Workingcopynotlocked; Thisisprobablyabug, pleasereport
SVN: Workingcopy 'D: \ temp \ workspace \ BOBO365 \ WebRoot \ WEB - INF \ classes \ com' ismissingornotlocked

After a long search on the Internet, it turned out that eclipse had also "compiled" the.svn folder in the SRC folder into web-inf /classes and copied it over.

So how to deal with it? The method provided by the author of the article I checked is not good, so I found a better method:

Open Project-> in Eclipse; The Properties - > JavaBuildPath menu, the "Source" TAB on the right side panel, the Excluded added

Into the "* * / SVN / * *".

This is to remove the. SVN folder from the build path so that the above problems do not occur.
----------------------------------

1. SVN plug-in error problem encountered by Eclipse when executing update in combination with SVN for version control:

Use MyEclipse for Java development and SVN for version control. After the code has been modified, Commit is executed, and then Update is executed.

Org. Tigrissubversionjavahl. ClientException: Workingcopynotlocked; Thisisprobablyabug, pleasereport
SVN: Workingcopy 'D: \ temp \ workspace \ BOBO365 \ WebRoot \ WEB - INF \ classes \ com' ismissingornotlocked
After a long search on the Internet, it turned out that eclipse had also "compiled" the.svn folder in the SRC folder into web-inf /classes and copied it over.
So how to deal with it? The method provided by the author of the article I checked is not good, so I found a better method:
Open Project-> in Eclipse; The Properties - > JavaBuildPath menu, the "Source" TAB on the right panel, join in the Excluded ". * * / SVN / * * ".
This is to remove the. SVN folder from the build path so that the above problems do not occur.

2. SVN 'containingworkingcopyadminareaismissing has been using SVN version control, environment is:

Win2003 + myeclipse6 + svn1.46
Deploy to tomcat5.5 and weblogic8.1

Problem description:
Eclipse development process automatically compile and publish frequently, resulting in/web - the corresponding inf/directory folder. SVN folder is deleted along with, cause synchronization occurs: SVN 'containingworkingcopyadminareaismissing hints.

Solutions:
Browse the SVN repository directory structure, delete all or part of the related files in the corresponding /web-inf/ directory in the project directory (I only delete the classes directory here), and refresh. Synchronize again, OK.
----------------------------------------------------------------

When the local project is compared with the SVN server, it produces... / project name /bin/org/.svn... Containingworkingcopyadminareais missing issues such as solution:

You should not use bin directory (that is, class generation directory as SVN supervision object), right click project - "team-" set properties - "name: SVN :ignore content: bin;

Delete the bin directory in SVN's repository;

Locally, the bin directory under the org began to delete, then right click on the bin directory, update, and then the bin directory disappeared;

Clean and rebuild the project. This section is about SVN plug-in error reporting problem.


Related articles: