Reputation: 1724
I have a remote git repository and I am trying to commit and push my latest changes. The problem is that everything commits fine except for project.pbxproj. Xcode does not complain. It just acts as if all committed with no issues. But when I push it complains that there are uncommitted changes. So I try to commit again. It shows that there are changes in the project.pbxproj. Fine. This has happened before. I have just committed again and all is good. But not this time. I commit. Xcode has no complaints until I try to push. So I try to commit again and I see that it really did not commit because the differences are the same as before.
Upvotes: 1
Views: 2550
Reputation: 20088
Opening the log navigator can help you find what's causing the problem. Choose View > Navigators > Show Log Navigator to open the log navigator. Select the commit from the log navigator. The editor will look similar to the following screenshot:
On the right side of the blue area of the screenshot is a small button. Click that button to open the transcript, which can help you determine why the commit is not working.
Upvotes: 2