Reputation: 1270
Whenever i commit and push project.xcodeproj
file, git not able to identify project.pbxproj
because it is not showing on remote branch.
If i do some changes in project like add a new file or change project settings etc. but still git unable to identify any changes in project.xcodeproj
.
Please help me out.
Upvotes: 0
Views: 939
Reputation: 1270
Finally i got the solution,
I move in project.xcodeproj
bundle and forcefully add project.pbxproj
file by using below command
git add -f project.pbxproj
Upvotes: 3
Reputation: 4008
Because the project.pbxproj
file is packed and embedded in the project.xcodeproj
bundle.
You change it , and git add it.
Git not able to identify project.pbxproj because it is not showing on remote branch.
I think you need some Plugin to open file in Github, like fugitive.vim .
Upvotes: 0