赞
踩
1、将要参与协作的项目 Fork 到自己的GitHub账户下
2、复制代码
git clone https://github.com/<自己的账户>/<项目名称>
cd <项目名称>
3、创建一个分支进行修改
git checkout -b <分支名称>
4、修改代码
5、提交修改
git add .
git commit -m "<修改信息>"
6、将修改推送到自己的 GitHub 账户下
git push origin <分支名称>
7、在 GitHub 上创建一个 PullRequest,等待审查与合并
如果审查不通过,需要重复 4-6 过程
8、需要经常性地 Sync fork,以与源服务器保持代码一致
9、本地需要及时更新(下面没有尝试,需要进一步确认)
git remote add upstream https://github.com/<源项目>
git remote -v (查看)
git fetch upstream
git merge upstream/master
git rebase upstream/master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。