Skip to content

Instantly share code, notes, and snippets.

@vkostechko
Last active October 25, 2018 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vkostechko/862e846c450d9d6feaaeb570faef5b81 to your computer and use it in GitHub Desktop.
Save vkostechko/862e846c450d9d6feaaeb570faef5b81 to your computer and use it in GitHub Desktop.
cocoapods common commands
to remove your current version you could just run:
sudo gem uninstall cocoapods
to update repo
pod repo update
you can install a specific version of cocoa pods via the following command:
sudo gem install cocoapods -v 0.25.0
You can use older installed versions with following command:
pod _0.25.0_ setup
to get list of installed pod versions:
pod --version
to add dev pod
pod '{pod name}', :path => '~/Documents/Projects/{pod name}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment