Cocoapods常用操作命令

查看镜像

gem sources -l

*** CURRENT SOURCES ***

https://gems.ruby-china.com/
删除镜像

gem sources --remove https://rubygems.org/

添加镜像

gem sources -a https://gems.ruby-china.com/

初始化pods

pod init

只安装新增的库,已安装的库不更新,但删除的库会删除

pod install --verbose --no-repo-update

只更新指定库名的第三个库,其他库不更新

pod update 库名 --verbose --no-repo-update

全部更新Podfile里的第三方库

pod install

你可能感兴趣的:(iOS,cocoapods,pods)