1. fork项目到自己的仓库
2. #下载代码到本地:
git clone 我的github项目链接
3.git remote add upstream 开源项目的链接
4.git remote -v
#反馈信息如下:
origin git@github 我自己的项目地址
upstream http://github.com 开源项目的项目地址
5.提交
git add .
git status
git commit -m ‘提交本地代码’
git push origin master
到github页面自己的项目–Pull requests–new
参考:
https://blog.51cto.com/u_3664660/3215035
https://www.lgolang.com/articles/1055
原创文章,作者:745907710,如若转载,请注明出处:https://blog.ytso.com/270485.html