欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

github pullrequest 简单流程 github 

程序员文章站 2022-05-20 12:59:56
...

git pull request 流程

有远程项目X,先将X fork 到自己的项目A

git clone A

git checkout -b fix_xxx  // 建立新分支来处理问题

git commit -am "xxx"     // 提交

git push origin fix_xxx  // 推送到线上的A, 根据提示在github的页面上发pull request

这时,原来的X会更新,需要将更新拉下来

git remote add upstream https://github.com/X

git remote set-url --push upstream no_push

git remote -v    // 检查, A是fetch和push,  X只是fetch

git checkout master

git fetch upstream

git rebase upstream/master

 

git checkout fix_xxx   

git merge master

git push origin fix_xxx

相关标签: github