This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/incubator-inlong-website.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 5e39b4b Automated deployment: Thu Apr 22 09:31:45 UTC 2021
ac1334c091a16ff6fc9f248542e6cb430297a008
5e39b4b is described below
commit 5e39b4b18b8452eff99cc27135fee900d17bf8da
Author: gosonzhang <[email protected]>
AuthorDate: Thu Apr 22 09:31:46 2021 +0000
Automated deployment: Thu Apr 22 09:31:45 UTC 2021
ac1334c091a16ff6fc9f248542e6cb430297a008
---
docs/en-us/development/how-to-commit.md | 26 +++++++++++++-------------
en-us/docs/development/how-to-commit.html | 26 +++++++++++++-------------
en-us/docs/development/how-to-commit.json | 4 ++--
en-us/docs/development/how-to-commit.md | 26 +++++++++++++-------------
4 files changed, 41 insertions(+), 41 deletions(-)
diff --git a/docs/en-us/development/how-to-commit.md
b/docs/en-us/development/how-to-commit.md
index c69072a..9c1fc74 100644
--- a/docs/en-us/development/how-to-commit.md
+++ b/docs/en-us/development/how-to-commit.md
@@ -1,5 +1,5 @@
---
-title: How to Commit - Apache inlong
+title: How to Commit - Apache InLong
---
# 如何提交代码
@@ -7,11 +7,11 @@ title: How to Commit - Apache inlong
<font color="#dd0000" size="4">TODO: This page needs to be translated into
English. If you are interested, just do it.</font>
## 0. 前言
-Apache inlong使用Github的Pull Request (PR)来接收贡献的代码,本文将详细介绍提交代码的详细流程。
+Apache InLong使用Github的Pull Request (PR)来接收贡献的代码,本文将详细介绍提交代码的详细流程。
-- inlong代码库:https://github.com/apache/incubator-inlong
+- InLong代码库:https://github.com/apache/incubator-inlong
-- inlong官网库:https://github.com/apache/incubator-inlong-website
+- InLong官网库:https://github.com/apache/incubator-inlong-website
## 1. Fork仓库
@@ -48,25 +48,25 @@ git fetch upstream
git pull upstream master
```
### 2.5 新建分支
-> 一般以issue id作为分支名,如:inlong-123
+> 一般以issue id作为分支名,如:InLong-123
```shell
-git checkout -b inlong-123
+git checkout -b InLong-123
```
-**确保分支`inlong-123`是基于官方master分支的最新代码**
+**确保分支`InLong-123`是基于官方master分支的最新代码**
分支创建完成后即可进行代码更改。
### 2.6 提交代码到远程分支
-> commit 信息的格式必须与Issue标题保持一致且以`[issue id]`开头,即:`[inlong-123] xxx`
+> commit 信息的格式必须与Issue标题保持一致且以`[issue id]`开头,即:`[InLong-123] xxx`
```shell
-git commit -a -m "[inlong-123] xxx"
-git push origin inlong-123
+git commit -a -m "[InLong-123] xxx"
+git push origin InLong-123
```
## 3. 创建PR
### 3.1 打开自己的github仓库页面
`https://github.com/<your_github_name>/incubator-inlong`
### 3.2. 切换分支
- 切换到提交的分支 `inlong-123`
+ 切换到提交的分支 `InLong-123`
### 3.3. 创建新PR
点击 `New pull request`或者`Compare & pull request`

@@ -74,7 +74,7 @@ git push origin inlong-123
需要注意以下几点:
1. PR的标题必须以issue id开头,最好与commit信息保持一致
2. 可以填写部分描述信息也可以不填
- 3. 如果点击`Create pull request`后提示代码冲突,则请将`inlong-123`分支的代码
+ 3. 如果点击`Create pull request`后提示代码冲突,则请将`InLong-123`分支的代码
与master分支同步一致后在进行提交

@@ -83,4 +83,4 @@ git push origin inlong-123
创建完PR后,所有的人都可以Review代码,可能会与您讨论一些实现的细节,可能还需要你进一步修改。
**一般该PR必须有2位以上的社区PPMC/Committer +1后,才可能正式合入官方代码库。**
-最后,恭喜您已经成为了inlong的官方贡献者了!
+最后,恭喜您已经成为了InLong的官方贡献者了!
diff --git a/en-us/docs/development/how-to-commit.html
b/en-us/docs/development/how-to-commit.html
index 0b4dabb..ec7ee3e 100644
--- a/en-us/docs/development/how-to-commit.html
+++ b/en-us/docs/development/how-to-commit.html
@@ -7,7 +7,7 @@
<meta name="keywords" content="how-to-commit" />
<meta name="description" content="how-to-commit" />
<!-- 网页标签标题 -->
- <title>How to Commit - Apache inlong</title>
+ <title>How to Commit - Apache InLong</title>
<link rel="shortcut icon" href="/img/apache.ico"/>
<link rel="stylesheet" href="/build/documentation.css" />
</head>
@@ -15,13 +15,13 @@
<div id="root"><div class="documentation-page"
data-reactroot=""><header class="header-container header-container-normal"><div
class="header-body"><a href="/en-us/index.html"><a href="//www.apache.org"><img
class="logo apache" style="width:120px" src="/img/asf_logo.svg"/></a><div
class="logo-split"></div><a href=""></a><img class="logo tube"
style="width:72px" src="/img/Tube logo.svg"/></a><div class="search
search-normal"><span class="icon-search"></span></div><span class="language-swi
[...]
<p><font color="#dd0000" size="4">TODO: This page needs to be translated into
English. If you are interested, just do it.</font></p>
<h2>0. 前言</h2>
-<p>Apache inlong使用Github的Pull Request (PR)来接收贡献的代码,本文将详细介绍提交代码的详细流程。</p>
+<p>Apache InLong使用Github的Pull Request (PR)来接收贡献的代码,本文将详细介绍提交代码的详细流程。</p>
<ul>
<li>
-<p>inlong代码库:<a
href="https://github.com/apache/incubator-inlong">https://github.com/apache/incubator-inlong</a></p>
+<p>InLong代码库:<a
href="https://github.com/apache/incubator-inlong">https://github.com/apache/incubator-inlong</a></p>
</li>
<li>
-<p>inlong官网库:<a
href="https://github.com/apache/incubator-inlong-website">https://github.com/apache/incubator-inlong-website</a></p>
+<p>InLong官网库:<a
href="https://github.com/apache/incubator-inlong-website">https://github.com/apache/incubator-inlong-website</a></p>
</li>
</ul>
<h2>1. Fork仓库</h2>
@@ -50,25 +50,25 @@ git pull upstream master
</code></pre>
<h3>2.5 新建分支</h3>
<blockquote>
-<p>一般以issue id作为分支名,如:inlong-123</p>
+<p>一般以issue id作为分支名,如:InLong-123</p>
</blockquote>
-<pre><code class="language-shell">git checkout -b inlong-123
+<pre><code class="language-shell">git checkout -b InLong-123
</code></pre>
-<p><strong>确保分支<code>inlong-123</code>是基于官方master分支的最新代码</strong></p>
+<p><strong>确保分支<code>InLong-123</code>是基于官方master分支的最新代码</strong></p>
<p>分支创建完成后即可进行代码更改。</p>
<h3>2.6 提交代码到远程分支</h3>
<blockquote>
-<p>commit 信息的格式必须与Issue标题保持一致且以<code>[issue id]</code>开头,即:<code>[inlong-123]
xxx</code></p>
+<p>commit 信息的格式必须与Issue标题保持一致且以<code>[issue id]</code>开头,即:<code>[InLong-123]
xxx</code></p>
</blockquote>
-<pre><code class="language-shell">git commit -a -m "[inlong-123] xxx"
-git push origin inlong-123
+<pre><code class="language-shell">git commit -a -m "[InLong-123] xxx"
+git push origin InLong-123
</code></pre>
<h2>3. 创建PR</h2>
<h3>3.1 打开自己的github仓库页面</h3>
<pre><code>`https://github.com/<your_github_name>/incubator-inlong`
</code></pre>
<h3>3.2. 切换分支</h3>
-<pre><code>切换到提交的分支 `inlong-123`
+<pre><code>切换到提交的分支 `InLong-123`
</code></pre>
<h3>3.3. 创建新PR</h3>
<pre><code>点击 `New pull request`或者`Compare & pull request`
@@ -78,14 +78,14 @@ git push origin inlong-123
<pre><code>需要注意以下几点:
1. PR的标题必须以issue id开头,最好与commit信息保持一致
2. 可以填写部分描述信息也可以不填
- 3. 如果点击`Create pull request`后提示代码冲突,则请将`inlong-123`分支的代码
+ 3. 如果点击`Create pull request`后提示代码冲突,则请将`InLong-123`分支的代码
与master分支同步一致后在进行提交
</code></pre>
<p><img src="../img/development/create_pull_request.png" alt=""></p>
<h2>4. Review代码</h2>
<p>创建完PR后,所有的人都可以Review代码,可能会与您讨论一些实现的细节,可能还需要你进一步修改。
<strong>一般该PR必须有2位以上的社区PPMC/Committer +1后,才可能正式合入官方代码库。</strong></p>
-<p>最后,恭喜您已经成为了inlong的官方贡献者了!</p>
+<p>最后,恭喜您已经成为了InLong的官方贡献者了!</p>
</div></section><footer class="footer-container"><div class="footer-body"><img
src="/img/incubator-logo.svg"/><div class="cols-container"><div class="col
col-24"><p>Apache inlong (incubating) is an effort undergoing incubation at The
Apache Software Foundation (ASF), sponsored by Incubator. Incubation is
required of all newly accepted projects until a further review indicates that
the infrastructure, communications, and decision making process have stabilized
in a manner consistent with [...]
<script
src="https://f.alicdn.com/react/15.4.1/react-with-addons.min.js"></script>
<script
src="https://f.alicdn.com/react/15.4.1/react-dom.min.js"></script>
diff --git a/en-us/docs/development/how-to-commit.json
b/en-us/docs/development/how-to-commit.json
index 9d4e177..50378ca 100644
--- a/en-us/docs/development/how-to-commit.json
+++ b/en-us/docs/development/how-to-commit.json
@@ -1,8 +1,8 @@
{
"filename": "how-to-commit.md",
- "__html": "<h1>如何提交代码</h1>\n<p><font color=\"#dd0000\" size=\"4\">TODO: This
page needs to be translated into English. If you are interested, just do
it.</font></p>\n<h2>0. 前言</h2>\n<p>Apache inlong使用Github的Pull Request
(PR)来接收贡献的代码,本文将详细介绍提交代码的详细流程。</p>\n<ul>\n<li>\n<p>inlong代码库:<a
href=\"https://github.com/apache/incubator-inlong\">https://github.com/apache/incubator-inlong</a></p>\n</li>\n<li>\n<p>inlong官网库:<a
href=\"https://github.com/apache/incubator-inlong-website\">https://githu [...]
+ "__html": "<h1>如何提交代码</h1>\n<p><font color=\"#dd0000\" size=\"4\">TODO: This
page needs to be translated into English. If you are interested, just do
it.</font></p>\n<h2>0. 前言</h2>\n<p>Apache InLong使用Github的Pull Request
(PR)来接收贡献的代码,本文将详细介绍提交代码的详细流程。</p>\n<ul>\n<li>\n<p>InLong代码库:<a
href=\"https://github.com/apache/incubator-inlong\">https://github.com/apache/incubator-inlong</a></p>\n</li>\n<li>\n<p>InLong官网库:<a
href=\"https://github.com/apache/incubator-inlong-website\">https://githu [...]
"link": "/en-us/docs/development/how-to-commit.html",
"meta": {
- "title": "How to Commit - Apache inlong"
+ "title": "How to Commit - Apache InLong"
}
}
\ No newline at end of file
diff --git a/en-us/docs/development/how-to-commit.md
b/en-us/docs/development/how-to-commit.md
index c69072a..9c1fc74 100644
--- a/en-us/docs/development/how-to-commit.md
+++ b/en-us/docs/development/how-to-commit.md
@@ -1,5 +1,5 @@
---
-title: How to Commit - Apache inlong
+title: How to Commit - Apache InLong
---
# 如何提交代码
@@ -7,11 +7,11 @@ title: How to Commit - Apache inlong
<font color="#dd0000" size="4">TODO: This page needs to be translated into
English. If you are interested, just do it.</font>
## 0. 前言
-Apache inlong使用Github的Pull Request (PR)来接收贡献的代码,本文将详细介绍提交代码的详细流程。
+Apache InLong使用Github的Pull Request (PR)来接收贡献的代码,本文将详细介绍提交代码的详细流程。
-- inlong代码库:https://github.com/apache/incubator-inlong
+- InLong代码库:https://github.com/apache/incubator-inlong
-- inlong官网库:https://github.com/apache/incubator-inlong-website
+- InLong官网库:https://github.com/apache/incubator-inlong-website
## 1. Fork仓库
@@ -48,25 +48,25 @@ git fetch upstream
git pull upstream master
```
### 2.5 新建分支
-> 一般以issue id作为分支名,如:inlong-123
+> 一般以issue id作为分支名,如:InLong-123
```shell
-git checkout -b inlong-123
+git checkout -b InLong-123
```
-**确保分支`inlong-123`是基于官方master分支的最新代码**
+**确保分支`InLong-123`是基于官方master分支的最新代码**
分支创建完成后即可进行代码更改。
### 2.6 提交代码到远程分支
-> commit 信息的格式必须与Issue标题保持一致且以`[issue id]`开头,即:`[inlong-123] xxx`
+> commit 信息的格式必须与Issue标题保持一致且以`[issue id]`开头,即:`[InLong-123] xxx`
```shell
-git commit -a -m "[inlong-123] xxx"
-git push origin inlong-123
+git commit -a -m "[InLong-123] xxx"
+git push origin InLong-123
```
## 3. 创建PR
### 3.1 打开自己的github仓库页面
`https://github.com/<your_github_name>/incubator-inlong`
### 3.2. 切换分支
- 切换到提交的分支 `inlong-123`
+ 切换到提交的分支 `InLong-123`
### 3.3. 创建新PR
点击 `New pull request`或者`Compare & pull request`

@@ -74,7 +74,7 @@ git push origin inlong-123
需要注意以下几点:
1. PR的标题必须以issue id开头,最好与commit信息保持一致
2. 可以填写部分描述信息也可以不填
- 3. 如果点击`Create pull request`后提示代码冲突,则请将`inlong-123`分支的代码
+ 3. 如果点击`Create pull request`后提示代码冲突,则请将`InLong-123`分支的代码
与master分支同步一致后在进行提交

@@ -83,4 +83,4 @@ git push origin inlong-123
创建完PR后,所有的人都可以Review代码,可能会与您讨论一些实现的细节,可能还需要你进一步修改。
**一般该PR必须有2位以上的社区PPMC/Committer +1后,才可能正式合入官方代码库。**
-最后,恭喜您已经成为了inlong的官方贡献者了!
+最后,恭喜您已经成为了InLong的官方贡献者了!