From 265b26dc740fcac48ce55b6259d51aea141bdfbd Mon Sep 17 00:00:00 2001 From: Yao Wang Date: Thu, 12 May 2022 10:36:47 +0800 Subject: [PATCH] Improve doc: update git repo for CONTRIBUTING.md --- CONTRIBUTING.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2c8b2c6a9d..8d944c449c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,22 +14,22 @@ Before submitting the code, we need to do some preparation: 1. Sign up or login to GitHub: [https://github.com](https://github.com) -2. Fork HugeGraph repo from GitHub: [https://github.com/hugegraph/hugegraph/fork](https://github.com/hugegraph/hugegraph/fork) +2. Fork HugeGraph repo from GitHub: [https://github.com/apache/incubator-hugegraph/fork](https://github.com/apache/incubator-hugegraph/fork) -3. Clone code from fork repo to local: [https://github.com/${GITHUB_USER_NAME}/hugegraph](https://github.com/${GITHUB_USER_NAME}/hugegraph) +3. Clone code from fork repo to local: [https://github.com/${GITHUB_USER_NAME}/incubator-hugegraph](https://github.com/${GITHUB_USER_NAME}/incubator-hugegraph) ```shell # clone code from remote to local repo - git clone https://github.com/${GITHUB_USER_NAME}/hugegraph + git clone https://github.com/${GITHUB_USER_NAME}/incubator-hugegraph.git ``` 4. Configure local HugeGraph repo ```shell - cd hugegraph + cd incubator-hugegraph # add upstream to synchronize the latest code - git remote add hugegraph https://github.com/hugegraph/hugegraph + git remote add hugegraph https://github.com/apache/incubator-hugegraph # set name and email to push code to github git config user.name "{full-name}" # like "Jermy Li" @@ -40,7 +40,7 @@ Optional: You can use [GitHub desktop](https://desktop.github.com/) to greatly s ## 2. Create an Issue on GitHub -If you encounter bugs or have any questions, please go to [GitHub Issues](https://github.com/hugegraph/hugegraph/issues) to report them and feel free to [create an issue](https://github.com/hugegraph/hugegraph/issues/new). +If you encounter bugs or have any questions, please go to [GitHub Issues](https://github.com/apache/incubator-hugegraph/issues) to report them and feel free to [create an issue](https://github.com/apache/incubator-hugegraph/issues/new). ## 3. Make changes of code locally