+4

Subversion plugin in eclipse has some issues for doing a svn cleanup of the folder. So, i thought of going to the terminal and running a svn cleanup but unfortunately that too doesn't work. I am getting the following error, looks like i need to upgrade svn client to 1.6
 
svn: This client is too old to work with working copy '.'.  You need to get a newer Subversion client, or to downgrade this working copy.See http://subversion.tigris.org/faq.html#working-copy-format-change for details.
 
How to upgrade subversion in ubuntu to the latest 1.6 version?

1 answers, +4 votes, 1102 views
ubuntu's picture
asked by ubuntu
43 weeks 3 days ago



1 Answers

  • You need to switch svn formats to execute command line svn commands till the new version of svn is released with ubuntu - oid4a4455943... 42 weeks 4 days ago
  • Answer
    -1

    You can change svn format easily without upgrading subversion by using the python script from svn.collab.net Get the script from http://svn.collab.net/repos/svn/trunk/tools/client-side/change-svn-wc-format.py
     
    Place the python script above the directory you want to switch svn version / format and execute as follows:-
     
    This will change the current subversion version in checked out directories to 1.6 format
    python ./change-svn-wc-format.py ./directory-name/ 1.6
     
    This will change the current subversion version to 1.5 format
    python ./change-svn-wc-format.py ./directory-name/ 1.5
     
    Now you can execute any svn commands you like for e.g svn cleanup. And once work is over, you can switch the format again.
     

    oid4a44559432d46's picture
    answer by oid4a4455943...
    42 weeks 4 days ago

    Asked by

    ubuntu's picture
    User offline. Last seen 43 weeks 3 days ago. Offline
    joined 43 weeks 3 days ago
    20 points

    View in your own language!