title | language |
---|---|
代码提交指南 |
zh-CN |
在 Github 上面可以很方便地提交 Pull Request (PR),下面介绍 Doris 项目的 PR 方法。
进入 apache/doris 的 github 页面 ,点击右上角按钮 Fork
进行 Fork。
git clone https://github.com/<your_github_name>/doris.git
cd doris
git submodule update --init --recursive
注意:请将 <your_github_name> 替换为您的 github 名字。
clone 完成后,origin 会默认指向 github 上的远程 fork 地址。
cd doris
git remote add upstream https://github.com/apache/doris.git
git remote -v
origin https://github.com/<your_github_name>/doris.git (fetch)
origin https://github.com/<your_github_name>/doris.git (push)
upstream https://github.com/apache/doris.git (fetch)
upstream https://github.com/apache/doris.git (push)
git checkout -b <your_branch_name>
注意: <your_branch_name> 为您自定义的分支名字。
创建完成后可进行代码更改。
git commit -a -m "<you_commit_message>"
git push origin <your_branch_name>
更多 git 使用方法请访问:git 使用,这里不赘述。
在浏览器切换到自己的 github 页面,切换分支到提交的分支 <your_branch_name> ,点击 Compare & pull request
按钮进行创建,如下图所示:
这时候,会出现 Create pull request
按钮,如果没有请检查是否正确选择了分支,也可以点击 “compare across forks” 重新选择 repo 和分支。
这里请填写 comment 的总结和详细内容,然后点击 Create pull request
进行创建。
关于如何写 Commit Message,下面列出了一些 Tips:
- 请用英文 动词 + 宾语 的形式,动词不用过去式,语句用祈使句;
- 消息主题(Subject)和具体内容(Body)都要写,它们之间要有空行分隔(GitHub PR界面上分别填写即可);
- 消息主题长度不要超过50个字符;
- 消息内容每行不要超过72个字符,超过的需要手动换行;
- 消息内容用于解释做了什么、为什么做以及怎么做的;
- 消息主题第一个字母要大写,句尾不要有句号;
- 消息内容中写明关联的issue(如果有),例如 #233;
更详细的内容请参考 https://chris.beams.io/posts/git-commit
创建成功后,您可以看到 Doris 项目需要 review,您可以等待我们 review 和合入,您也可以直接联系我们。
至此,您的PR创建完成,更多关于 PR 请阅读 collaborating-with-issues-and-pull-requests 。
提交PR时的代码冲突一般是由于多人编辑同一个文件引起的,解决冲突主要通过以下步骤即可:
git checkout master
git pull upstream master
git checkout fix
git rebase -i master
此时会弹出修改记录的文件,一般直接保存即可。然后会提示哪些文件出现了冲突,此时可打开冲突文件对冲突部分进行修改,将提示的所有冲突文件的冲突都解决后,执行
git add .
git rebase --continue
依此往复,直至屏幕出现类似 rebase successful 字样即可,此时您可以进行往提交PR的分支进行更新:
git push -f origin fix
$ git branch
* master
$ git fetch upstream
remote: Counting objects: 195, done.
remote: Compressing objects: 100% (68/68), done.
remote: Total 141 (delta 75), reused 108 (delta 48)
Receiving objects: 100% (141/141), 58.28 KiB, done.
Resolving deltas: 100% (75/75), completed with 43 local objects.
From https://github.com/apache/doris
9c36200..0c4edc2 master -> upstream/master
$ git rebase upstream/master
First, rewinding head to replay your work on top of it...
Fast-forwarded master to upstream/master.
$ git status
# On branch master
# Your branch is ahead of 'origin/master' by 8 commits.
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# custom_env.sh
nothing added to commit but untracked files present (use "git add" to track)
$ git push origin master
Counting objects: 195, done.
Delta compression using up to 32 threads.
Compressing objects: 100% (41/41), done.
Writing objects: 100% (141/141), 56.66 KiB, done.
Total 141 (delta 76), reused 140 (delta 75)
remote: Resolving deltas: 100% (76/76), completed with 44 local objects.
To https://lide-reed:xxxx@github.com/lide-reed/doris.git
9c36200..0c4edc2 master -> master
$ git checkout -b my_branch
Switched to a new branch 'my_branch'
$ git branch
master
* my_branch
$ git add -u
$ git commit -m "Fix a typo"
[my_branch 55e0ba2] Fix a typo
1 files changed, 2 insertions(+), 2 deletions(-)
$ git push origin my_branch
Counting objects: 11, done.
Delta compression using up to 32 threads.
Compressing objects: 100% (6/6), done.
Writing objects: 100% (6/6), 534 bytes, done.
Total 6 (delta 4), reused 0 (delta 0)
remote: Resolving deltas: 100% (4/4), completed with 4 local objects.
remote:
remote: Create a pull request for 'my_branch' on GitHub by visiting:
remote: https://github.com/lide-reed/doris/pull/new/my_branch
remote:
To https://lide-reed:xxxx@github.com/lide-reed/doris.git
* [new branch] my_branch -> my_branch
至此,就可以按照前面的流程进行创建 PR 了。