github怎么给开源项目提交pr(Pull request)

1. fork开源项目

  • 这里以 https://github.com/kubesphere/website.git 项目为例子,点击fork到自己仓库

github怎么给开源项目提交pr(Pull request)_第1张图片

  • git clone 自己仓库的代码到本地 如果觉得网速太慢可以使用 https://hub.fastgit.org/空间名/项目名.git 进行加速,或者通过导入到gitee 然后再克隆下来
  • 修改项目origin 改为GitHub上自己原地址
//进入项目目录 查看并编辑 git config
vim .git/config
//默认生成的值 如果是gitee导入的大概这样子 https://gitee.com/xiexinyang/website.git
[remote "origin"]
	url = https://hub.fastgit.org/xinyangbest/website.git

//修改origin url 从加速地址改为原地址 gitee也一样改为原github地址
[remote "origin"]
	url = https://github.com/xinyangbest/website.git

2.修改代码并获取更新提交

  • 创建功能分支 并修改代码提交到自己fork后的项目中
//创建开发分支 这个非必须
git checkout -b dev-xxx-xxx
//vim xxx文件 git diff 一下
git add 文件名
git commit -m "修改介绍"
git push origin branch
  • 这个时候呢,先不要去提交pr,避免有其他人提交有更新的版本 先做一下同步
  • git rebase 和git merge的区别是 git rebase 形成的是一条线,会把你当前的几个commit,放到最新commit的后面。git merge 会把公共分支和你当前的commit 按照提交时间合并在一起,形成一个新的 commit 提交,注意不要在公共分支使用rebase
//先设置 upstream 为开源项目地址,目的是为了把开源项目的更新 同步到自己fork的项目中
git remote add upstream https://github.com/kubesphere/website.git
//获取更新
git fetch upstream
//合并更新
git rebase upstream/master
//如果有冲突呢 修改文件冲突 修改后git add 冲突文件名 commit提交
git rebase --continue

3.创建pr 等待维护者审查

  • 打开自己fork的项目 比如 https://github.com/xinyangbest/website.git
  • 点击pull requests 新建即可 new pull request
    github怎么给开源项目提交pr(Pull request)_第2张图片
  • 然后填写title和修改备注,等待维护者审查即可

审查通过

  • 一个审查通过的大概例子: https://github.com/kubesphere/website/pull/877
    github怎么给开源项目提交pr(Pull request)_第3张图片

欢迎扫码添加,一起交流哦!

  • 也可以点击公众号菜单或者回复微信获取

你可能感兴趣的:(kubesphere,dev,pr提交,github提交pr,开源项目提交pr,kubesphere文档提pr)