You want to get involved? Great! There are plenty of ways you can help out.
Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved.
Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue or assessing patches and features.
The issue tracker is the preferred channel for changes: spelling mistakes, wording changes, new content and generally submitting pull requests, but please respect the following restrictions:
-
Please do not use the issue tracker for personal support requests (use Stack Overflow).
-
Please do not derail or troll issues. Keep the discussion on topic and respect the opinions of others.
Pull requests are a great way to add new features to Unfinished. Pretty much any sort of change is accepted if seen as constructive.
Adhering to the following this process is the best way to get your work included in the project:
-
Fork the project, clone your fork, and configure the remotes:
# Clone your fork of the repo into the current directory git clone https://github.com/<your-username>/unfinished.git # Navigate to the newly cloned directory cd unfinished # Assign the original repo to a remote called "upstream" git remote add upstream https://github.com/phpsrbija/unfinished.git
-
If you cloned a while ago, get the latest changes from upstream:
git checkout master git pull upstream master
-
Create a new topic branch (off the main project development branch) to contain your change or fix:
git checkout -b <topic-branch-name>
-
Commit your changes in logical chunks. Use Git's interactive rebase feature to tidy up your commits before making them public.
-
Push your topic branch up to your fork:
git push origin <topic-branch-name>
-
Open a Pull Request with a clear title and description.