Git常用命令
1、添加文件 git add xxx
2、提交更新到本地 git commit -m ‘local-repo‘
3、提交更新 git push master
4、列出分支 git branch
5、检索分支代码 git checkout xxx
6、拉取分支更新 git pull xxx
7、列出tag git tag -l
8、添加本地tag: git tag -a 0.0.1
9、推送tag到远程库: git push master --tags
10、本地删除标签: git tag -d 0.0.1
11、远程删除标签: git push master :refs/tag/0.0.1
Cocoapods
1、查找对应得库: pod search xx
2、添加后,pod install 从新安装库
3、创建依赖描述文件: pod spec create a
4、检查依赖描述文件: pod spec lint a.podspec
5、发布到私有库: pod push my-spec a.podspec
6、使用依赖文件: pod ‘a‘, ‘0.0.1‘
7、指定平台版本: platform :ios, ‘5.0‘
8、创建私有库: cd ~/.cocoapods mkdir my-spec (在目录下创建私有库即可)
9、推送到私有库: pod push my-spec a.podspec
10、参考文章:http://docs.cocoapods.org/commands.html#pod_pus
Git 、 Cocoapods常用命令
原文:http://www.cnblogs.com/frounk/p/4729297.html