When I try to put images into the Resources folder of my project, I get this message:
fatal: Not a git repository (or any of the parent directories): .git
How can I fix it?
Go to Organizer->Repositories and remove the Corresponding repository.
Faced the same problem in Xcode 4.6.1 after moving my folder and xcodeproj file. Here's what works for me:
git init in the new directory where you placed the folder and xcodeproj file, and do an initial commitIn order to do anything in Git, you have to have a Git repository. This is where Git stores the data for the snapshots you are saving.
so just go into your project directory let say you have a project name test_project just go into that directory and type the command
git init
and this will work.
create a local git repositoryCreate local git repository for this project, shall i select it or not?