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, 355 views
Visitor's picture
asked by Visitor
12 weeks 4 days ago



2 Answers

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

    - Visitor 12 weeks 4 days 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
    12 weeks 4 days ago
    Answer
    0

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

    Visitor's picture
    answer by Visitor
    12 weeks 4 days ago

    Asked by

    Visitor's picture
    Visitor

    View in your own language!