svn add guess_language/
svn: warning: 'guess_language' is already under version control
Why is this? When I downloaded it, it was under SVN. (I downloaded it from SVN)
How do I release that svn…so that I can turn it into a regular directory?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Remove the
.svndirectory insideguess_language/and it’s parent (if that also came from another SVN repository). This should allow you to add it to another SVN repository.This also must be done recursively through
guess_language‘s children. A command which can do this for you (depending on your Linux environment) is:(You probably shouldn’t just take that for granted, test it with a non-deleting version, i.e
find . -name '.svn' -type dand check the only directories listed are the ones you want to remove.)