其他分享
首页 > 其他分享> > Github Pr 操作流程

Github Pr 操作流程

作者:互联网

 

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

标签:Pr,origin,git,项目,流程,github,add,Github,com
来源: https://www.cnblogs.com/steamQ/p/16415347.html