You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by ji...@apache.org on 2022/07/24 03:04:32 UTC

[doris-website] branch master updated: remove incubator

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 39fcb8d0237 remove incubator
39fcb8d0237 is described below

commit 39fcb8d0237305f069b1ed3ac4016ef4f6833f17
Author: jiafeng.zhang <zh...@gmail.com>
AuthorDate: Sun Jul 24 11:04:23 2022 +0800

    remove incubator
    
    remove incubator
---
 community/how-to-contribute/how-to-contribute.md   | 22 ++++++++++----------
 community/how-to-contribute/pull-request.md        |  6 +++---
 community/release-and-verify/release-doris-core.md |  2 +-
 .../release-and-verify/release-doris-manager.md    |  2 +-
 .../current/how-to-contribute/contributor-guide.md |  2 +-
 .../current/how-to-contribute/how-to-contribute.md | 24 +++++++++++-----------
 .../release-and-verify/release-doris-core.md       |  2 +-
 7 files changed, 30 insertions(+), 30 deletions(-)

diff --git a/community/how-to-contribute/how-to-contribute.md b/community/how-to-contribute/how-to-contribute.md
index 11795417ff9..dafcb98b92d 100644
--- a/community/how-to-contribute/how-to-contribute.md
+++ b/community/how-to-contribute/how-to-contribute.md
@@ -38,7 +38,7 @@ Any questions, you can contact us to get timely answers, including Wechat, Gitte
 
 For the first time in Doris community, you can:
 
-* Follow [Doris Github](https://github.com/apache/incubator-doris)
+* Follow [Doris Github](https://github.com/apache/doris)
 * Subscribe to our [mailing list](./subscribe-mail-list.md);
 * Join Doris Wechat Group (add WeChat-ID: morningman-cmy, note: join Doris Group) and ask questions at any time.
 * Enter Doris's [Slack](https://join.slack.com/t/apachedoriscommunity/shared_invite/zt-11jb8gesh-7IukzSrdea6mqoG0HB4gZg)
@@ -47,17 +47,17 @@ Learn the development trends of Doris project in time and give your opinions on
 
 ## Doris's code and documentation
 
-As you can see from [GitHub](https://github.com/apache/incubator-doris), Apache Doris (incubating) code base mainly consists of three parts: Frontend (FE), Backend (BE) and Broker (to support file reading on external storage systems such as HDFS). Documents are mainly the wiki on Doris website and GitHub, as well as the online help manual when running Doris. Details of these components can be found in the following table:
+As you can see from [GitHub](https://github.com/apache/doris), Apache Doris (incubating) code base mainly consists of three parts: Frontend (FE), Backend (BE) and Broker (to support file reading on external storage systems such as HDFS). Documents are mainly the wiki on Doris website and GitHub, as well as the online help manual when running Doris. Details of these components can be found in the following table:
 
 | Component Name | Component Description | Related Language|
 |--------|----------------------------|----------|
-| [Frontend daemon (FE)](https://github.com/apache/incubator-doris) | consists of a query coordinator and a metadata manager | Java|
-| [Backend daemon (BE)](https://github.com/apache/incubator-doris) | Responsible for storing data and executing query fragments | C++|
-| [Broker](https://github.com/apache/incubator-doris) | Read HDFS data to Doris | Java|
-| [Website](https://github.com/apache/incubator-doris-website) | Doris Website | Markdown |
-| [Manager](https://github.com/apache/incubator-doris-manager) | Doris Manager | Java |
-| [Flink-Connector](https://github.com/apache/incubator-doris-flink-connector) | Doris Flink Connector | Java |
-| [Spark-Connector](https://github.com/apache/incubator-doris-spark-connector) | Doris Spark Connector | Java |
+| [Frontend daemon (FE)](https://github.com/apache/doris) | consists of a query coordinator and a metadata manager | Java|
+| [Backend daemon (BE)](https://github.com/apache/doris) | Responsible for storing data and executing query fragments | C++|
+| [Broker](https://github.com/apache/doris) | Read HDFS data to Doris | Java|
+| [Website](https://github.com/apache/doris-website) | Doris Website | Markdown |
+| [Manager](https://github.com/apache/doris-manager) | Doris Manager | Java |
+| [Flink-Connector](https://github.com/apache/doris-flink-connector) | Doris Flink Connector | Java |
+| [Spark-Connector](https://github.com/apache/doris-spark-connector) | Doris Spark Connector | Java |
 | Doris Runtime Help Document | Online Help Manual at Doris Runtime | Markdown|
 
 ## Improving documentation
@@ -68,11 +68,11 @@ Browse the document, you can deepen your understanding of Doris, can also help y
 
 If you are interested in improving the quality of documents, whether it is revising the address of a page, correcting a link, and writing a better introductory document, we are very welcome!
 
-Most of our documents are written in markdown format, and you can modify and submit document changes directly through `docs/` in [GitHub](https://github.com/apache/incubator-doris). If you submit code changes, you can refer to [Pull Request](./pull-request.md).
+Most of our documents are written in markdown format, and you can modify and submit document changes directly through `docs/` in [GitHub](https://github.com/apache/doris). If you submit code changes, you can refer to [Pull Request](./pull-request.md).
 
 ## If a Bug or problem is found
 
-If a Bug or problem is found, you can directly raise a new Issue through GitHub's [Issues](https://github.com/apache/incubator-doris/issues/new/choose), and we will have someone deal with it regularly.
+If a Bug or problem is found, you can directly raise a new Issue through GitHub's [Issues](https://github.com/apache/doris/issues/new/choose), and we will have someone deal with it regularly.
 
 You can also fix it yourself by reading the analysis code (of course, it's better to talk to us before that, maybe someone has fixed the same problem) and submit a [Pull Request](./pull-request.md).
 
diff --git a/community/how-to-contribute/pull-request.md b/community/how-to-contribute/pull-request.md
index 45872652e2d..7552921b6f3 100644
--- a/community/how-to-contribute/pull-request.md
+++ b/community/how-to-contribute/pull-request.md
@@ -26,11 +26,11 @@ under the License.
 
 # Code Submission Guide
 
-[Pull Request (PR)](https://help.github.com/articles/about-pull-requests/) can be easily submitted on [Github](https://github.com/apache/incubator-doris). The PR method of Doris project is described below.
+[Pull Request (PR)](https://help.github.com/articles/about-pull-requests/) can be easily submitted on [Github](https://github.com/apache/doris). The PR method of Doris project is described below.
 
 ## Fork Repository
 
-Go to the [github page](https://github.com/apache/incubator-doris) of apache/incubator-doris , and click the button `Fork` in the upper right corner for Fork.
+Go to the [github page](https://github.com/apache/doris) of apache/incubator-doris , and click the button `Fork` in the upper right corner for Fork.
 
 ![Fork](/images/fork-repo.png)
 
@@ -39,7 +39,7 @@ Go to the [github page](https://github.com/apache/incubator-doris) of apache/inc
 #### (1) Clone the code locally:
 
 ```
-git clone https://github.com/<your_github_name>/incubator-doris.git
+git clone https://github.com/<your_github_name>/doris.git
 ```
 
 Note: Please replace your GitHub name with your yourgithubname.
diff --git a/community/release-and-verify/release-doris-core.md b/community/release-and-verify/release-doris-core.md
index ff072291880..2f53f7a9a7c 100644
--- a/community/release-and-verify/release-doris-core.md
+++ b/community/release-and-verify/release-doris-core.md
@@ -26,7 +26,7 @@ under the License.
 
 # Release Doris Core
 
-Doris Core refers to the content published in https://github.com/apache/incubator-doris.
+Doris Core refers to the content published in https://github.com/apache/doris.
 
 ## Preparing for release
 
diff --git a/community/release-and-verify/release-doris-manager.md b/community/release-and-verify/release-doris-manager.md
index 791ce32d38b..3ae04524508 100644
--- a/community/release-and-verify/release-doris-manager.md
+++ b/community/release-and-verify/release-doris-manager.md
@@ -28,7 +28,7 @@ under the License.
 
 Its codebase is separate from the main Doris codebase at:
 
-- https://github.com/apache/incubator-doris-manager
+- https://github.com/apache/doris-manager
 
 ## ready to publish
 
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/how-to-contribute/contributor-guide.md b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/how-to-contribute/contributor-guide.md
index b8f3fadce17..5ef8b86fb24 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/how-to-contribute/contributor-guide.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/how-to-contribute/contributor-guide.md
@@ -42,7 +42,7 @@ commits邮件非常重要,因为所有的GitHub Issue,PR提交都会发往
 ### 关联你的 ASF 账号与 Github 账号
 
 我们用GitHub来管理我们的Issue以及用户贡献。
-所以你需要把你的ASF账号与GitHub账号进行关联来获得[Doris仓库](https://github.com/apache/incubator-doris)的写入权限。
+所以你需要把你的ASF账号与GitHub账号进行关联来获得[Doris仓库](https://github.com/apache/doris)的写入权限。
 通过在[Gitbox](https://gitbox.apache.org/setup/)完成操作后,你就可以对GitHub仓库中的Issue,PR进行管理。
 
 ## Code Review指南
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/how-to-contribute/how-to-contribute.md b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/how-to-contribute/how-to-contribute.md
index 7dc2418b3f5..0fceb7936ac 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/how-to-contribute/how-to-contribute.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/how-to-contribute/how-to-contribute.md
@@ -28,7 +28,7 @@ under the License.
 
 非常感谢您对 Doris 项目感兴趣,我们非常欢迎您对 Doris 项目的各种建议、意见(包括批评)、评论和贡献。
 
-您对 Doris 的各种建议、意见、评论可以直接通过 GitHub 的 [Issues](https://github.com/apache/incubator-doris/issues/new/choose) 提出。
+您对 Doris 的各种建议、意见、评论可以直接通过 GitHub 的 [Issues](https://github.com/apache/doris/issues/new/choose) 提出。
 
 参与 Doris 项目并为其作出贡献的方法有很多:代码实现、测试编写、流程工具改进、文档完善等等。任何贡献我们都会非常欢迎,并将您加入贡献者列表,进一步,有了足够的贡献后,您还可以有机会成为 Apache 的 Committer,拥有 Apache 邮箱,并被收录到 [Apache Committer 列表中](http://people.apache.org/committer-index.html)。
 
@@ -38,7 +38,7 @@ under the License.
 
 初次来到 Doris 社区,您可以:
 
-* 关注 Doris [Github 代码库](https://github.com/apache/incubator-doris)
+* 关注 Doris [Github 代码库](https://github.com/apache/doris)
 * 订阅我们的 [邮件列表](../subscribe-mail-list.md); 
 * 加入 Doris 微信群(加微信号:morningman-cmy, 备注:加入Doris群) 随时提问;
 * 加入 [Slack](https://join.slack.com/t/apachedoriscommunity/shared_invite/zt-11jb8gesh-7IukzSrdea6mqoG0HB4gZg);
@@ -47,17 +47,17 @@ under the License.
 
 ## Doris 的代码和文档
 
-正如您在 [GitHub](https://github.com/apache/incubator-doris) 上看到的,Apache Doris (incubating) 的代码库主要包括三部分:Frontend (FE), Backend (BE) 和 Broker (为了支持 HDFS 等外部存储系统上的文件读取)。文档主要是 Doris 网站和 GitHub 上的 wiki,还有运行 Doris 的时候的在线帮助手册。这些组件的详细情况参见下表:
+正如您在 [GitHub](https://github.com/apache/doris) 上看到的,Apache Doris (incubating) 的代码库主要包括三部分:Frontend (FE), Backend (BE) 和 Broker (为了支持 HDFS 等外部存储系统上的文件读取)。文档主要是 Doris 网站和 GitHub 上的 wiki,还有运行 Doris 的时候的在线帮助手册。这些组件的详细情况参见下表:
 
 | 组件名称 | 组件描述 | 相关语言 |
 |--------|----------------------------|----------|
-| [Frontend daemon (FE)](https://github.com/apache/incubator-doris)| 由“查询协调器”和“元数据管理器”组成 | Java|
-| [Backend daemon (BE)](https://github.com/apache/incubator-doris) | 负责存储数据和执行查询片段 | C++|
-| [Broker](https://github.com/apache/incubator-doris) | 读取 HDFS 数据到 Doris | Java |
-| [Website](https://github.com/apache/incubator-doris-website) | Doris 网站 | Markdown |
-| [Manager](https://github.com/apache/incubator-doris-manager) | Doris Manager | Java |
-| [Flink-Connector](https://github.com/apache/incubator-doris-flink-connector) | Doris Flink Connector | Java |
-| [Spark-Connector](https://github.com/apache/incubator-doris-spark-connector) | Doris Spark Connector | Java |
+| [Frontend daemon (FE)](https://github.com/apache/doris)| 由“查询协调器”和“元数据管理器”组成 | Java|
+| [Backend daemon (BE)](https://github.com/apache/doris) | 负责存储数据和执行查询片段 | C++|
+| [Broker](https://github.com/apache/doris) | 读取 HDFS 数据到 Doris | Java |
+| [Website](https://github.com/apache/doris-website) | Doris 网站 | Markdown |
+| [Manager](https://github.com/apache/doris-manager) | Doris Manager | Java |
+| [Flink-Connector](https://github.com/apache/doris-flink-connector) | Doris Flink Connector | Java |
+| [Spark-Connector](https://github.com/apache/doris-spark-connector) | Doris Spark Connector | Java |
 | Doris 运行时 help 文档 | 运行 Doris 的时候的在线帮助手册 | Markdown |
 
 ## 改进文档
@@ -68,11 +68,11 @@ under the License.
 
 如果您对改进文档的质量感兴趣,不论是修订一个页面的地址、更正一个链接、以及写一篇更优秀的入门文档,我们都非常欢迎!
 
-我们的文档大多数是使用 markdown 格式编写的,您可以直接通过在 [GitHub](https://github.com/apache/incubator-doris) 中的 `docs/` 中修改并提交文档变更。如果提交代码变更,可以参阅 [Pull Request](./pull-request.md)。
+我们的文档大多数是使用 markdown 格式编写的,您可以直接通过在 [GitHub](https://github.com/apache/doris) 中的 `docs/` 中修改并提交文档变更。如果提交代码变更,可以参阅 [Pull Request](./pull-request.md)。
 
 ## 如果发现了一个 Bug 或问题
 
-如果发现了一个 Bug 或问题,您可以直接通过 GitHub 的 [Issues](https://github.com/apache/incubator-doris/issues/new/choose) 提一个新的 Issue,我们会有人定期处理。
+如果发现了一个 Bug 或问题,您可以直接通过 GitHub 的 [Issues](https://github.com/apache/doris/issues/new/choose) 提一个新的 Issue,我们会有人定期处理。
 
 您也可以通过阅读分析代码自己修复(当然在这之前最好能和我们交流下,或许已经有人在修复同样的问题了),然后提交一个 [Pull Request](./pull-request.md)。
 
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/release-and-verify/release-doris-core.md b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/release-and-verify/release-doris-core.md
index a08fc0dc4dd..d6b8914bf8e 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/release-and-verify/release-doris-core.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/release-and-verify/release-doris-core.md
@@ -26,7 +26,7 @@ under the License.
 
 # 发布 Doris Core
 
-Doris Core 指发布 https://github.com/apachedoris 中的内容。
+Doris Core 指发布 https://github.com/apache/doris 中的内容。
 
 ## 准备发布
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org