SVN Warning: Already under version control – dremi.INFO https://www.dremi.info Software Development, Digital Marketing and News Mon, 04 Apr 2011 17:32:50 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.2 https://www.dremi.info/wp-content/uploads/2020/12/cropped-icon-32x32.png SVN Warning: Already under version control – dremi.INFO https://www.dremi.info 32 32 Small Tip, big solution in SVN Problem https://www.dremi.info/articles/small-tip-big-solution-in-svn-problem.html https://www.dremi.info/articles/small-tip-big-solution-in-svn-problem.html#respond Mon, 04 Apr 2011 17:32:50 +0000 https://www.dremi.info/?p=1307 […]]]> Some time, you will find this problems when you work under SVN:

  • Already under version control
  • Not a working copy
  • SVN Working Copy xxx locked and cleanup failed

AND This is solutions of problem above:

  • Already under version control
    #sudo find ./ -name “.svn” | xargs rm -Rf
    try to check back #svn st
  • Not a working copy
    rename old files/folder with “Not a working copy” status
    checkout new files/folder with “Not a working copy”
    try to check back #svn st
  • SVN Working Copy xxx locked and cleanup failed
    #sudo find ./ -name “.svn” | xargs rm -Rf
    #sudo svn cleanup
    #sudo svn up
    try to check back #svn st

I hope those problems that you often encounter in working with the SVN can be resolved with the solution.

]]>
https://www.dremi.info/articles/small-tip-big-solution-in-svn-problem.html/feed 0