Github中Fork的使用
16 Nov 2012一、fork 把别人的版本库变成自己的
详细官方教程: "https://help.github.com/articles/fork-a-repo":https://help.github.com/articles/fork-a-repo
二、clone 克隆自己的版本库
$ git clone git@github.com:linguofeng/cocos2d-x.git
三、remote 配置远程版本库,实现与原始版本库同步
$ git remote -v // 查看当前远程版本库 $ git remote add cocos2d-x git://github.com/cocos2d/cocos2d-x.git // 添加原始版本库 $ git fetch cocos2d-x // 获取原始版本库的更新 $ git merge cocos2d-x/master // 合并原始版本库的代码到当前版本库中,合并前确保当前分支是master
四、push
$ git fetch cocos2d-x // 获取原始版本库最新的代码 $ git merge cocos2d-x/master // 提交自己的前先合并最新原始版本库中的代码 $ git push origin master // 提交代码到自己的版本库
五、pull 提交修改后的代码到原始版本库
详细官方教程: "https://help.github.com/articles/using-pull-requests":https://help.github.com/articles/using-pull-requests