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 // 推到远端