- Visit https://github.com/vesoft-inc/nebula
- Click
Fork
button (top right) to establish a cloud-based fork.
Define a local working directory:
# Define your working directory
working_dir=$HOME/Workspace
Set user
to match your Github profile name:
user={your Github profile name}
Create your clone:
mkdir -p $working_dir
cd $working_dir
git clone https://github.com/$user/nebula.git
# the following is recommended
# or: git clone [email protected]:$user/nebula.git
cd $working_dir/nebula
git remote add upstream https://github.com/vesoft-inc/nebula.git
# or: git remote add upstream [email protected]:vesoft-inc/nebula.git
# Never push to upstream master since you do not have write access.
git remote set-url --push upstream no_push
# Confirm that your remotes make sense:
# It should look like:
# origin [email protected]:$(user)/nebula.git (fetch)
# origin [email protected]:$(user)/nebula.git (push)
# upstream https://github.com/vesoft-inc/nebula (fetch)
# upstream no_push (push)
git remote -v
Please link the Nebula Graph pre-commit hook into your .git
directory.
This hook checks your commits for formatting, building, doc generation, etc.
cd $working_dir/nebula/.git/hooks
ln -s ../../.linters/cpp/hooks/pre-commit.sh .
Sometimes, pre-commit hook can not be executable. In such case, you have to make it executable manually.
cd $working_dir/nebula/.git/hooks
chmod +x pre-commit
Get your local master up to date:
cd $working_dir/nebula
git fetch upstream
git checkout master
git rebase upstream/master
Checkout a new branch from master:
git checkout -b myfeature
NOTE: Because your PR often consists of several commits, which might be squashed while being merged into upstream, we strongly suggest you open a separate topic branch to make your changes on. After merged, this topic branch could be just abandoned, thus you could synchronize your master branch with upstream easily with a rebase like above. Otherwise, if you commit your changes directly into master, maybe you must use a hard reset on the master branch, like:
git fetch upstream
git checkout master
git reset --hard upstream/master
git push --force origin master
You can now edit the code on myfeature
branch. Please be noted that we are following Google C++ Style Guide.
Please refer to the build source code documentation to compile.
-
Replace the binary files
The compiled binary files of the three services are in
nebula/build/src/daemon/_build/
directory. The compiled console is innebula/build/src/console/_build
directory. You can replace the binary files in the bin directory, restart the services and verify. -
Add unit tests
There is a
test
directory in the modified code module. You can add unit tests in it, then compile and run the unit tests. Please make sure your submitted codes pass all the unit tests. -
Run all the unit tests
cd nebula/build ctest -j$(nproc)
# While on your myfeature branch.
git fetch upstream
git rebase upstream/master
Commit your changes.
git commit
Likely you'll go back and edit/build/test some more than commit --amend
in a few cycles.
When ready to review (or just to establish an offsite backup or your work),
push your branch to your fork on github.com
:
git push -f origin myfeature
- Visit your fork at https://github.com/$user/nebula (replace
$user
obviously). - Click the
Compare & pull request
button next to yourmyfeature
branch.
Once your pull request has been opened, it will be assigned to at least two reviewers. Those reviewers will do a thorough code review to ensure the changes meet the repository's contributing guidelines and other quality standards.