0

My ubuntu desktop has a different version of svn installed and eclipse has a different version of svn. Due to some issue eclipse is whining to cleanup the svn folders. But unfortunately svn cleanup on terminal doesn't work due to version conflicts. My code folder contains tons of directories and files.
 
How to recursively remove just the .svn folders so that i can continue?

2 answers, 0 votes, 380 views
Visitor's picture
asked by Visitor
17 weeks 1 day ago



2 Answers

  • find . -name .svn -print0 | xargs -0 rm -rf

    - Visitor 17 weeks 18 hours ago
  • Answer
    0

    Maybe an svn export works for you. Or a shell script, but that's a lot more work.

    Visitor's picture
    answer by Visitor
    17 weeks 1 day ago
    Answer
    0

    Open a terminal and execute the following script
     
    find . -name ".svn" -exec rm -rf {} \;

    Visitor's picture
    answer by Visitor
    17 weeks 15 hours ago

    Asked by

    Visitor's picture
    Visitor

    View in your own language!