Re: Xcode Project Missing File
Re: Xcode Project Missing File
- Subject: Re: Xcode Project Missing File
- From: Seth Willits <email@hidden>
- Date: Tue, 19 Mar 2013 13:01:30 -0700
On Mar 19, 2013, at 12:53 PM, Chris Tracewell wrote: I did rm -rf .svn in the project directory as well, but it made no difference. I did the same with a .svn directory that was inside the project.xcodeproj package, but no luck. Any idea where else to look for where this is specified?
The problem is likely that there are still .svn folders littered throughout. svn puts them in *every* folder (even inside .nib packages which was always annoying), so to clean all that up I put this in my ~/.bash_profile
function svnstrip() { find $1 -name '.svn' -print0 | xargs -0 rm -rf }
After opening a new terminal window:
cd .../YourProject svnstrip
All traces of svn will be gone. **Make sure you cd to the project directory as it recursively deletes .svn folders in all descendant paths.**
After that it should be fine in Xcode. -- Seth Willits
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden