From 8b76cc4bca09daa70977bd7fb495bf3ca5d70038 Mon Sep 17 00:00:00 2001
From: timothy65535 <86483005+timothy65535@users.noreply.github.com>
Date: Tue, 13 Jul 2021 22:47:59 +0800
Subject: [PATCH] [KYUUBI #791] Fix point to right repo in
PULL_REQUEST_TEMPLATE (#792)
* [KYUUBI 791] Fix point to right repo in PULL_REQUEST_TEMPLATE
* improve contributions.md
---
.github/PULL_REQUEST_TEMPLATE | 2 +-
docs/community/contributions.md | 12 ++++++------
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/.github/PULL_REQUEST_TEMPLATE b/.github/PULL_REQUEST_TEMPLATE
index fd29cd94b..8af218063 100644
--- a/.github/PULL_REQUEST_TEMPLATE
+++ b/.github/PULL_REQUEST_TEMPLATE
@@ -3,7 +3,7 @@ Thanks for sending a pull request!
Here are some tips for you:
1. If this is your first time, please read our contributor guidelines: https://kyuubi.readthedocs.io/en/latest/community/contributions.html
- 2. If the PR is related to an issue in https://github.com/NetEase/kyuubi/issues, add '[KYUUBI #XXXX]' in your PR title, e.g., '[KYUUBI #XXXX] Your PR title ...'.
+ 2. If the PR is related to an issue in https://github.com/apache/incubator-kyuubi/issues, add '[KYUUBI #XXXX]' in your PR title, e.g., '[KYUUBI #XXXX] Your PR title ...'.
3. If the PR is unfinished, add '[WIP]' in your PR title, e.g., '[WIP][KYUUBI #XXXX] Your PR title ...'.
-->
diff --git a/docs/community/contributions.md b/docs/community/contributions.md
index 195b3be7b..880ff52ab 100644
--- a/docs/community/contributions.md
+++ b/docs/community/contributions.md
@@ -2,12 +2,12 @@
# Contribution Guidelines
-**Kyuubi** is an [Apache License v2.0](https://github.com/NetEase/kyuubi/blob/master/LICENSE) open source software.
+**Kyuubi** is an [Apache License v2.0](https://github.com/apache/incubator-kyuubi/blob/master/LICENSE) open source software.
Contributing to Kyuubi including source code, documents, tests e.t.c. means that you agree to the Apache License v2.0.
-- Better to search the issue history first before reporting an Issue
-- Better to create an Issue to describe the feature or bug first before make a pull request.
+- Better to search the issue history first before reporting an Issue
+- Better to create an Issue to describe the feature or bug first before make a pull request.
- Better to use English for world widely understanding.
- Ask us anything
@@ -17,12 +17,12 @@ Before you start, please read the [Code of Conduct](http://www.apache.org/founda
If you are new to submit a Pull Request, the follow steps are helpful to you.
1. An available [git](https://git-scm.com/downloads), you can run `git version` if you not sure you have
-2. Fork [Kyuubi](https://github.com/NetEase/kyuubi) on github, now you have a cloned Kyuubi repo
+2. Fork [Kyuubi](https://github.com/apache/incubator-kyuubi) on github, now you have a cloned Kyuubi repo
3. Clone your Kyuubi repo with cmd `git clone https://github.com/${yourname}/kyuubi.git`
4. Create a new branch with cmd `git checkout -b test-branch`
5. Modify the code you want
6. Commit and push code to your Kyuubi repo with commd `git commit -am "comment"; git push test-branch test-branch`
-7. Back to [Kyuubi](https://github.com/NetEase/kyuubi), you can see a banner about `new pull request`
+7. Back to [Kyuubi](https://github.com/apache/incubator-kyuubi), you can see a banner about `new pull request`
8. Now we can create a pull request to Kyuubi
## Creating a Pull Request
@@ -43,7 +43,7 @@ Here are some tips for you:
### _Which issue are you going to fix?_