Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

podfile.lock is missing from working copy

I recently started having this issue after attempting to use the pod update command on my project. After successfully updating the pods, xcode now gives me the following error

"podfile.lock is missing from working copy"

Now i have tried cleaning the build, deleting derived data, updating cocoapods but this doesn't seem to fix the issue. When i look in the commit window the file does not appear to exist in the local version.

Does anyone know a way to sort this?

like image 591
SmokersCough Avatar asked Sep 23 '16 16:09

SmokersCough


1 Answers

I had the same issue. In my case in the commit window Podfile.lock(!) and Manifest.lock(?) files were unchecked as shown below,

Podfile.lock(!)

Manifest.lock(?)

The content of Podfile.lock(!) file seems carried to Manifest.lock(?) file. I checked both and then pushed to my repository. Afterwards, the warning was gone and I had no issue related to Pod. Hope you can solve your issue by doing the same.

like image 157
Engnyl Avatar answered Sep 28 '22 13:09

Engnyl