Reputation: 33644
I am having issues where some assets in my xcode projec (ttf's, xib, images) are not added to my project when I do a pull from some other computer. Any idea what might be causing this?
Upvotes: 0
Views: 107
Reputation: 73936
There's some bad advice floating around out there that suggests you should add your .xcodeproj
to your gitignore. This is one of the problems it causes. If you have done this, then you should remove it from your gitignore and check your .xcodeproj
bundle into Git.
Upvotes: 2
Reputation: 6958
The machine which is ignoring the files may have been configured to ignore certain files.
Check the value of core.excludesfile
in your gitconfig
by runnning git config -l
. The value should be the path to a file with a list of files to ignore--check to make sure you aren't ignoring any of the files you listed in your original question, and remove them if you are.
Here is some more information on ignoring files.
Upvotes: 0