Contributing to this project is very simple. You can open an issue.
Pull requests are welcome as well:
-
Fork this project over GitHub
-
Set up your repository and set a remote branch for potential future updates
$ git remote add upstream git://github.com/petk/awesome-jquery.git $ git config branch.master.remote upstream
That way you can update your repository (when the
upstream
gets updated) and automatically pullupstream
commits:$ git pull
-
Create a new Git branch for instance
patch-1
:$ git checkout -b patch-1
This ensures that your repository will not need rebasing when the
upstream
gets updated. -
Make changes to the
patch-1
branchChanges should include libraries or resources that are in a way related to jQuery. It would be nice if added plugins meet plugin's guidelines. Fixing 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