1. Git合并其它仓库的代码
1.1. 增加新仓库
$ git remote add pod-template git@github.com:CocoaPods/pod-template.git
pod-template
为本地新增加的仓库
1.2. 查看新仓库
$ git remote -v
origin git@github.com:GreedBell/pod-template.git (fetch)
origin git@github.com:GreedBell/pod-template.git (push)
pod-template git@github.com:CocoaPods/pod-template.git (fetch)
pod-template git@github.com:CocoaPods/pod-template.git (push)
多了pod-template
1.3. fetch 新仓库
$ git fetch pod-template
1.4. 合并新仓库
$ git merge pod-template/master
1.5. 提交
1.5.1. 提交到自己仓库
$ git push origin master
1.5.2. 提交到新仓库
如果有权限的话
$ git push pod-template master