Skip to content

Contributing

nef edited this page Oct 30, 2022 · 3 revisions

Contributing to Onyx

Start off by creating a fork of the repository on github. Then clone this fork with git:

git clone https://github.com/your_username/onyx

And checkout to a new branch:

git checkout -b my_new_feature

Now open the generated "onyx" folder with a code editor of your choice and make your edits. Then stage your changes:

git add .

And commit and push:

git commit -m "My New Feature"
git push

Now create a pull request on the onyx repo.

Clone this wiki locally