• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Xcode Project Missing File
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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

References: 
 >Re: Xcode Project Missing File (From: Chris Tracewell <email@hidden>)

  • Prev by Date: Re: Xcode Project Missing File
  • Next by Date: Re: Xcode Project Missing File
  • Previous by thread: Re: Xcode Project Missing File
  • Next by thread: Speeding up the disclosure triangles in the Xcode Navigation panel.
  • Index(es):
    • Date
    • Thread