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
上一篇: 将本地 Git 仓库上传至 Github githubgit
下一篇: Github私有仓库使用设置
推荐阅读
-
Github 简单、快速 搭建hexo博客 + 各博客平台比较
-
基于Hexo的GitHub博客搭建流程
-
利用Jekyll-Bootstrap搭建github blog 简单记录
-
服务计算 模仿 Github API 简单设计一个博客 API
-
github Pull Request流程
-
解决Github上的资源无法下载(raw.githubusercontent.com’s server IP address could not be found.)问题[最简单的方法]
-
Git与GitHub的简单了解(3)
-
GitHub入门教程 手把手教你最简单的开源项目托管
-
利用Jekyll-Bootstrap搭建github blog 简单记录
-
github提交代码流程