I am using svn and Xcode 4. When I do
svn status
the output is:
~ HelloWorld.xcodeproj
How can I remove the "~" symbol?
I am using svn and Xcode 4. When I do
svn status
the output is:
~ HelloWorld.xcodeproj
How can I remove the "~" symbol?
I solved it with part of answer of:
What does the Subversion status symbol "~" mean?
But I had to remove all .svn folders in the xcodeproj packet and then to do the process:
Best solution is to rename the new object (in your case, the directory); "svn remove" the object from the repository which is causing the collision (probably a file you've deleted), Commit, then rename the new object back and "svn add" it to the repository. Commit again. You'll have a sequence of 3 revisions where the old object existed, was removed, and the new object was added, respectively. –
Brian Lacy D