Skip to content

Contributing

Nathan Price edited this page Apr 21, 2023 · 5 revisions

You can contribute to the project by opening a pull request. If you'd like to contribute but don't know what you can do, take a look at the issue tracker and see if any features/problems are still unresolved. Feel free to ask if you'd like some ideas.

If you want to work on something big or what is not yet on the issue tracker, please contact us first.

Contribute to this Wiki

To make changes, you'll need to make your changes and put them in a patch. Once you have the patch, you'll submit it in an issue as well as a changelog.

  1. Make your edits
  2. Stage your changes
$ git add filename.md
  1. make sure your changes have been changed
$ git status 
On branch master
Your branch is up to date with 'origin/master'.

Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
        modified:   Home.md

  1. commit your changes
git commit -m "This is my commit message"  
  1. Create the patch from the last commit
git format-patch -1 HEAD
0001-This-is-my-commit-message.patch
  1. Submit the patch via an enhancement issue along with a changelog.
Clone this wiki locally