Reputation: 4079
i just updated to Xcode
5 and my project is using GIT
, after update completed suddenly question marks appear in project navigator file near each file.
when i am trying to Commit
i don't see what files have been changed, i cannot pull also
and when i am trying to push it gives :Push Success" message but the repository on GitHub
don't updated.
Upvotes: 6
Views: 2805
Reputation: 12343
Quick fix is to Create or Save the new project 'outside' the directory (say Desktop) that is not linked to your github/bitbucket
Upvotes: 1
Reputation: 3718
You probably did not set up your git repository properly. There are ways of adding external git repositories, but they tend not to work well for github (in my experience) and always lead to these sorts of issues.
If you want to set up a remote git repository through github on XCode these are the steps you should take.
This will definitely create a project that is under version control by a remote git repository hosted on github.
Upvotes: 3