美文网首页
Cocoapads创建私有仓库常用命令

Cocoapads创建私有仓库常用命令

作者: 松花蛋蘸醋 | 来源:发表于2016-09-12 09:13 被阅读10次

    //打开隐藏的命令:

    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去除警告

    相关文章

      网友评论

          本文标题:Cocoapads创建私有仓库常用命令

          本文链接:https://www.haomeiwen.com/subject/uqlpettx.html