If you find any bugs, please fix them and send pull-request. If you want add some enhancement or something new, please open an issue for discussion.
To send pull-request, you should make the following steps
- Fork this repository
- Clone the forked repository
- Add original repositore as remote one
- Create a branch in your local repository with specific name for your changes, e.g.
bugfix
- Switch to this branch
- Change something that you assume make this repository better
- Commit your changes in the branch
bugfix
with a meaningful comment, e.g.Fix typo
- Switch to the branch
master
- Pull new commits to the branch
master
from this repository, not forked one - Switch to branch
bugfix
- Make
git rebase master
to take all new commits from original repository to branchbugfix
- Make push to your forked repository in new remote branch
bugfix
- Send pull-request from your remote branch
bugfix
tomaster
branch of the original repository