//打开隐藏的命令:
defaults write com.apple.finder AppleShowAllFiles -bool true
//关闭隐藏的命令:
defaults write com.apple.finder AppleShowAllFiles -bool false
===
pod spec create specname source_url 创建spec文件 specname文件名称 source_url远程资源链接
pod spec lint FLRefresh.podspec —-verbose --allow-warnings 验证spec文件是否正确 —verbose 详细描述 --allow-warnings去除警告
pod repo add name specs_url 添加私有仓库的本地远程仓库存放 specs的地址并且拉取远程仓库
pod repo remove [name] 移除本地私有仓库
pod repo push name specname.podspec --allow-warnings推送spec文件到远程仓库 --allow-warnings去除警告
网友评论