Delete Subversion Out of Version Files

Asked 2 years ago, Updated 2 years ago, 90 views

If I want to completely synchronize my work copy with the repository, I need to delete the non-version control files and directories, but how do I type the command?

svn

2022-09-30 14:48

1 Answers

You can delete non-version control files using the following command

 svn status | grep^?|cut-c9-|xargs rm-rf


2022-09-30 14:48

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.