Shubham
Shubham

Reputation: 1270

Git unable to identify project.pbxproj

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

Answers (2)

Shubham
Shubham

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

dengApro
dengApro

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

Related Questions