-
Notifications
You must be signed in to change notification settings - Fork 275
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.
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.
- Make your edits
- Stage your changes
$ git add filename.md
- 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
- commit your changes
git commit -m "This is my commit message"
- Create the patch from the last commit
git format-patch -1 HEAD
0001-This-is-my-commit-message.patch
- Submit the patch via an enhancement issue along with a changelog.