CocoaPods trunk is moving to be read-only. Read more on the blog, there are 11 months to go.

HBKitTools 0.0.9

HBKitTools 0.0.9

Maintained by hubin_huang.



  • By
  • Hubin_Huang

HBKitTools

个人常用开发组件

Git常用指令

$ git add *  // 添加到暂存
$ git commit -m "add NSTimer+HBWeakTimer"  // 本地提交 -m "日志"       
$ git tag / $ git tag -l   // 查看标签列表
$ git tag 0.0.4  // 给定标签
$ git push --tags  // 推送标签
$ git push -u origin master // 推送代码

podspec常用指令

$ pod lib lint HBKitTools.podspec // 本地验证
$ pod trunk push HBKitTools.podspec  // 推到远端