git 上传大于100M文件就会被限制,所以我们需要用到 git lfs
话不多说,直接开始:
一、安装 git lfs :Homebrew : brew install git-lfs
MacPorts : port install git-lfs
2、git lfs install
3、git lfs track "*.psd" (若要添加路径可:git lfs track "xxxx/xxxx/*.psd" )
4、 git lfs track "*.psd/*" 此步 不执行容易失败
5、git add .gitattributes
6、git add file.psd
git commit -m "Add design file"
git push origin master
二、发布到cocapod上:
1、注册cocapod账号
2、pod trunk me 可查询
3、pod spec create “文件名”
4、vim "文件名".spec 根据需要的配置 修改
5、git tag “标签名” git push --tags
6、pod lib lint 检查spec 是否有误
7、pod trunk push "文件名".spec
8、获取sha1值 shasum “path”
网友评论