git 命令
git init //初始化
git status //查看状态
git add . //添加文件到缓冲区
git commit -m "描述" //从缓冲区提交代码到仓库
git tag -a '0.0.1' -m '描述' //添加tag
git tag //查看tag
git tag -d '0.0.1' //删除tag
git remote add origin https://github.com/xxx.git //关联本地仓库和远程仓库。
git push -f origin master //将本地库的代码推到远程库
git push --tags //将本地创建的tag推到远程库
git push origin :0.0.1 //删除tag
pod命令
pod lib create xxx //创建pod库
pod spec create xxx //生成pod库配置文件
pod init //生成Podfile
pod lib lint //验证lib
pod update --no-repo-update //更新配置文件 忽略警告
pod repo push [repo] [podspec] // 把本地的spec推到远端
pod repo push [repo] [podspec] --verbose --allow-warnings // 推送忽略警告⚠️