You can contribute in many ways: openning or participating of a issue, reporting a bug, sending a pull request.
-
Fork the project on Github, Help Guide to Fork a repository.
-
Clone the project.
-
Create a branch specific to the issue you are working on.
git checkout -b update-readme-file
-
Open up the project in your favourite text editor, select the file you want to contribute to and make your changes.
-
After making your changes in the new git branch then add your modified files to git, How to add, commit, push and go
git add path/to/filename.ext
You can also add all unstaged files using:
git add .Note, using a
git add .will automatically add all files. You can do agit statusto see your changes, but do it beforegit add. -
Commit your changes using a descriptive commit message.
git commit -m "Brief Description of Commit" -
Push your commits to your Github Fork:
git push -u origin branch-name
-
Submit a pull request.
Open your pull request, if you don't know how do it, check this tutorial
For the good manutance of the project, follow all the code styles: