How linux deletes svn files
This article mainly explains "how to delete svn files by linux". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "linux how to delete svn files"!
Method: 1, use "find.-type d-name" .svn "| xargs rm-rf" command to delete the specified svn file; 2, use the "find.-type d-iname" .svn "- exec rm-rf {}\" command to delete the specified svn file.
The operating environment of this tutorial: linux7.3 system, Dell G3 computer.
How to delete svn files by linux
Connect to the linux server with Xshell
Enter the command to go to the directory where you want to delete the SVN, for example:
Cd / www/web/ziyiai/public_html
Enter the following command to delete the .svn directory under this directory, which means to clear the SVN information
Find. -type d-name ".svn" | xargs rm-rf
Or
Find. -type d-iname ".svn"-exec rm-rf {}\; now that you have a better understanding of "how linux deletes svn files", you might as well do it! Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!