Tag Archives: # SVN

[Solved] svn Error: E230001: Server SSL certificate verification failed: certificate issued

svn: E230001: Server SSL certificate verification failed: certificate issued

means that the server’s SSL certificate verification failed.

Solution:

In the terminal, Execute svn ls https://*/svn/ (my project address)

Then the terminal will ask you to choose R, t, or p, p for accept

We enter p and press Enter,then you will be prompted to enter the computer user’s password and svn account password,just follow the prompts

After all input is complete, Press Enter

Python: SVN deletes files on local and remote repositories

SVN command to delete files in local and remote repositories.

we directly deleted the folder in the local, SVN status check status, found that the local deleted file in front of an exclamation mark.

The

exclamation mark indicates that local files and remote files are in conflict. Because we have deleted the file locally, but not remotely. If we do SVN update, the directly deleted file will be restored.

for example, there is a folder named SB, we want to delete this folder on the local and remote warehouse and all the files in it

svn delete SB

after using the SVN delete SB command, you will find that the deleted file is preceded by a D, indicating easy deletion.

svn commit -m "Delete the sb files."

commit the folder SB on the remote repository will also be deleted. Take a backup before deleting the code!