You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by ra...@apache.org on 2021/02/22 09:10:57 UTC

[dubbo-website] branch master updated: 修改容易产生歧义的地方 (#736)

This is an automated email from the ASF dual-hosted git repository.

ranke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new a69b68a  修改容易产生歧义的地方 (#736)
a69b68a is described below

commit a69b68a25758760eade5c6d3cfedfc45fdc0576e
Author: 邪影oO <21...@qq.com>
AuthorDate: Mon Feb 22 17:10:52 2021 +0800

    修改容易产生歧义的地方 (#736)
---
 .../contributor/new-contributor-guide_dev.md                      | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/content/zh/docs/contribution-guidelines/contributor/new-contributor-guide_dev.md b/content/zh/docs/contribution-guidelines/contributor/new-contributor-guide_dev.md
index 0de75e6..acd9f66 100644
--- a/content/zh/docs/contribution-guidelines/contributor/new-contributor-guide_dev.md
+++ b/content/zh/docs/contribution-guidelines/contributor/new-contributor-guide_dev.md
@@ -51,10 +51,12 @@ git fetch upstream
 ##### 4. **我们的工作以issue为驱动,认领一个issue,或者创建一个issue并描述清楚要做什么。**
 新人推荐标记为: `good first issue` 的 issue
 
-##### 5. **选择一个开发的基础分支,通常是 upstream/develop, 并基于此创建一个新的本地分支**
+##### 5. **选择一个开发的基础分支,通常是 upstream/master, 并基于此创建一个新的本地分支**
+upstream/master 分支是目前 2.7.x 版本的开发分支
+
 ```shell
-(从远程仓库拉创建分支到本地)
-git checkout -b up-dev-issue#${issue-number} upstream/develop
+# 从远程仓库创建分支到本地
+git checkout -b up-dev-issue#${issue-number} upstream/master
 ```
 为了避免一些不必要的麻烦,我们推荐以 "upstream" 中的分支为基础创建新的本地分支。
 可以以要做的事情的简单描述作为分支名(只要你能看懂就行),通常情况下我们会把issue号包含到分支名中,例如上面的 checkout 命令中的。