Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does Pod Repo Remove Master do?

So I am very new to CocoaPods and I want some clarification on a command.

I had an error that said Unable to find a specification for 'Firebase/Core' and after multiple tries of different commands the only thing that worked was Pod repo remove master. Can anyone tell me why that worked and what it did?

like image 419
Alikeju Adejo Avatar asked Jul 10 '17 15:07

Alikeju Adejo


People also ask

How do I remove pod dependency?

Just rm -rf that pod's folder, and remove the line from the Podfile. Then run pod install again.

What does POD repo update do?

cocoapods-repo-update is a CocoaPods plugin that checks your dependencies when you run pod install and updates the local specs repositories if needed.

What is POD repo push?

Pod Repo Push ActionAdd podspec to your private repo on tag event. The action will automatically update the podspec version based on the tag name using the version_bump_podspec action from Fastlane.


1 Answers

The Master(Specs) Repo is the repository on GitHub that contains the list of all available pods. In case it is broken or not up-to-date you might face issues while installing or updating your pods.

By pod repo remove master you removed the master repo which might be broken or not up-to-date.

like image 118
Aakash Avatar answered Sep 28 '22 03:09

Aakash