Missing file warnings showing up after upgrade to Xcode 4

后端 未结 21 1970
忘了有多久
忘了有多久 2020-11-30 17:23

I recently upgraded to Xcode 4 (which is a great upgrade) but now I\'m getting some warnings that I did not get before. I have looked through forums and other SO posts but

21条回答
  •  庸人自扰
    2020-11-30 17:48

    I used the following way to deal with tha issue:

    Launch the terminal and cd to the project directory. (ex: cd /Users/Mauro/Src/Pippero-1.2/ )

    Then enter the following command:

    find . -name .svn -exec rm -rf { } \;
    

    the command will recursively search for files (and folder) called .svn and delete them

提交回复
热议问题