Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.21 KB

CONTRIBUTING.md

File metadata and controls

44 lines (29 loc) · 1.21 KB

Contributing guidelines to Awesome jQuery

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 pull upstream 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 branch

    Changes 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