Contributing guidelines to Awesome Dojo
February 7, 2017 ยท View on GitHub
Contributing to this project is very simple. You can open an issue.
Pull requests are welcome as well:
-
Fork a project on GitHub
-
Set up your repository and set a remote branch for future updates
$ git add remote upstream git://github.com/petk/awesome-dojo $ git config branch.master.remote upstreamThat way you can update your repository (when the
upstreamgets updated) and automatically pullupstreamcommits:$ git pull -
Create a new Git branch for instance
patch-1:$ git checkout -b patch-1This ensures that your repository will not need rebasing when the
upstreamgets updated. -
Make changes to the
patch-1branchChanges must include libraries or resources that use Dojo Toolkit or any project related to Dojo Foundation. Typos and grammatical corrections are perfectly fine as well.
-
Commit and push to your GitHub repository
$ git add . $ git commit -m "my new changes" $ git push origin -
Send a pull request