Pod repo remove master

To remove a specific repository named “master” from CocoaPods, you can use the following command:

    pod repo remove master
  

The command “pod repo remove master” removes the local copy of the repository named “master” from your machine.

Example:

Let’s assume you have previously added a repository named “master” to CocoaPods using the following command:

    pod repo add master https://github.com/example/repo.git
  

If you want to remove that repository, you can run:

    pod repo remove master
  

After executing the command, CocoaPods will remove the “master” repository from your machine.

Leave a comment