dockerzhang commented on a change in pull request #289:
URL:
https://github.com/apache/incubator-inlong-website/pull/289#discussion_r816480071
##########
File path: development/how-to-commit.md
##########
@@ -49,14 +49,14 @@ There will be two repositories: `origin` (own repository)
and `upstream` (offici
```shell
git fetch upstream
-git pull upstream master
+git merge upstream/master origin/master
```
### 2.5 Create a new branch
> Generally, issue id is used as the branch name, such as: INLONG-123
```shell
-git checkout -b INLONG-123
+git checkout -b INLONG-123 origin/master
Review comment:
here we do not need to change.
##########
File path: development/how-to-commit.md
##########
@@ -49,14 +49,14 @@ There will be two repositories: `origin` (own repository)
and `upstream` (offici
```shell
git fetch upstream
-git pull upstream master
+git merge upstream/master origin/master
Review comment:
`git pull upstream master` works well.
##########
File path:
i18n/zh-CN/docusaurus-plugin-content-docs-development/current/how-to-commit.md
##########
@@ -41,13 +41,14 @@ upstream https://github.com/apache/incubator-inlong.git
(push)
### 2.4 获取upstream仓库代码,并更新本地master分支代码为最新
```shell
git fetch upstream
-git pull upstream master
+git merge upstream/master origin/master
Review comment:
ditto
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]