Forked from
ogs / ogs
21182 commits behind the upstream repository.
-
Lars Bilke authoredLars Bilke authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
After you've reviewed these contribution guidelines, you'll be all set to
contribute to this project.
CONTRIBUTING.md 1.36 KiB
How to contribute
Getting Started
- Make sure you have a GitHub account
- Fork the repository on GitHub
Making Changes
- Create a topic branch from where you want to base your work.
- This is usually the master branch.
- Only target other branches if you are certain your fix must be on that branch.
- To quickly create a topic branch based on master;
git branch my_topic_branch master
then checkout the new branch withgit checkout my_topic_branch
. Please avoid working directly on themaster
branch.
- Make commits of logical units.
- Make sure your code conforms to the styleguide.
- Check for unnecessary whitespace with
git diff --check
before committing. - Make sure your commit messages are in the proper format.
One sentence summary.
Detailed description of the commit ...
....
- TODO: Test your changes
Submitting Changes
- Push your changes to a topic branch in your fork of the repository.
- Submit a pull request to the main repository.