iOS project on Xcode.
We do not keep the POD files as part of our repo.
A new change is needed and it is on a file from one of the PODS.
How do I go about committing such a change to the repo?
Question posted in Xcode
Whether you're new to Xcode or an experienced developer, our archive has everything you need to know about this integrated development environment (IDE). From basic functionalities to advanced features, our archive covers a wide range of Xcode-related questions and answers. Browse our archive now and find solutions to your Xcode questions, and take your app development skills to the next level
Whether you're new to Xcode or an experienced developer, our archive has everything you need to know about this integrated development environment (IDE). From basic functionalities to advanced features, our archive covers a wide range of Xcode-related questions and answers. Browse our archive now and find solutions to your Xcode questions, and take your app development skills to the next level
2
Answers
You can try and copy the SHA1 of your fix from your forked repository, and update your Podfile with it, as described in "CocoaPods and GitHub forks", follwoed by a
pod update
.You can create a fork of the repo, make the change to a given branch, and then point your pod file to your repo + branch like this:
Or you can open a pull request and ask the owner to pull in your change. Depending on what your change does