Tag Archives: SVN Error

[Solved] SVN Error: “containing working copy admin area is missin

I. Introduction
Scene description
A directory was created in SVN, but it was not deleted in svn, but was deleted directly in the resource manager or finder. At this time, SVN will report an error saying that the created directory cannot be found. The error message is: “containing working copy admin area is missing”

Such as

Directory’XX/.svn’ containing working copy admin area is missing

So how to deal with it

Two, the solution
1. Delete the XX directory.

2, Use the SVN Update command to update XX and its sub-directory resources, specific to the eclipse project, right-click on the parent directory of the deleted directory and select Team-》Update

Get it done.

How to Solve SVN Error: svn:Checksum mismatch while updating

Error executing SVN update:

svn:Checksummismatchwhileupdating'D:\workspace\demo\test\.svn\text-base\test.php.svn-base';expected:'e46703b45e810605fd7513943533b00f',actual:'5480a41836d19692a1a85e667d222e82'

The file identification code is inconsistent between local and remote. Under the condition of ensuring the consistency between the two, use the following methods to solve the problem:
1. Find the directory where the file is located eg: D:// workspace/demo/test \
2. Show all hidden files and find the. SVN/entries file in the directory
3. Remove the read-only attribute of the file
4. Edit the file to find the file

10630test.phpfile29152011-09-23T02:16:30.000000Ze46703b45e810605fd7513943533b00f2011-09-14T06:42:48.305470Z2915yuchangfeng

5. Change ‘e46703b45e810605fd7513943533b00f’ to ‘5480a41836d19692a1a85e667d222e82’
6. Save the file and update it again

 

How to Solve SVN Error: The XML response contains invalid XML

The XML response contains invalid XML error occurred when the SVN of several colleagues in the company was updated.

I got a clue from Google, which may be related to the Http request.

I remember that the previous project changed the network request method once, and changed the Http protocol to the svn protocol. In addition, the project directory has some external links

Checked the SVN directory of the colleague who reported the error, some directories are http protocol, some are svn protocol. (The external link and the root directory are different)

Checked the normal SVN directory of the machine, all directories are svn protocol.

Solution: Unify the root directory and all external chain request methods into the svn protocol

Analyzing the reason, it may be that when the request protocol was uniformly changed, some colleagues did not check the inclusion of the external chain when performing the relocate operation, resulting in the request protocol of the external chain still being http

Fixed

 

How to Solve SVN Error: cleanup failed to process the following paths

I got an error today when using TortoiseSVN commits, and when I use clean up it says

—————————
TortoiseSVN
—————————
Cleanup failed to process the following paths:
D:\work\system
Failed to run the WC DB work queue associated with ‘D:\工作\系统’, work item
10707 (file-install
src/Content/js/kissy/gallery/form/1.3/uploader/demo/queue.html 1 0 1 1)
The file “D:\work\system\.svn\pristine\a1\a1e5e1ad14bb3725ada717d19301a41e987a2802.svn-base” cannot be opened:
The system could not find the specified file.

I found the solution online.

step1: Go to sqlite official website (http://www.sqlite.org/download.html) to download sqlite3.exe

Find Precompiled Binaries for Windows, click sqlite-shell-win32-x86-3080500.zip to download, about 300KB

step2: Copy the downloaded sqlite3.exe file to the same level directory as wc.db in .svn

step3: Start -> Run -> Open cmd command

Open wc.db

Execute delete from work_queue;

As shown in the figure.

step 4: clean up, and then you will be prompted to clean up successfully.

Done!