Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: update git repo for CONTRIBUTING.md #1872

Merged
merged 1 commit into from
May 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ 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 hugegraph
```

4. Configure local HugeGraph repo
Expand All @@ -29,7 +29,7 @@ Before submitting the code, we need to do some preparation:
cd 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"
Expand All @@ -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

Expand Down