Skip to content

Latest commit

 

History

History
65 lines (41 loc) · 2.04 KB

contributing.md

File metadata and controls

65 lines (41 loc) · 2.04 KB

Contributing to gulp-wp-pot

Everyone is welcome to contribute with patches, bug-fixes and new features.

Ideas

If you have a idea the easiest way is to create a issue.

Bugs

Before you submit a bug issue you should be able to run the tests that the project has. Then you know if the tests works or not.

When you submit a bug issue you should try to be as detailed as possible in your bug issue so we can help you better with the issue.

Please write how to reproduce the bug.

Pull requests

Good pull requests with patches, improvements or new features is always welcome. They should remain focused in scope and avoid containing unrelated commits.

Please follow the projects code style. The project code should be following the code style that is based on JavaScript Standard Style but with semicolons (semistandard).

  • Fork gulp-wp-pot on Github and add the upstream remote.
git clone https://github.com/<your-username>/gulp-wp-pot.git
cd gulp-wp-pot
git remote add upstream https://github.com/wp-pot/gulp-wp-pot.git

This is useful if you cloned your repo a while ago and you now want to updated it.

git checkout master
git pull upstream master
  • Create a new branch:
git checkout -b <topic-branch-name>
  • Make sure to update, or add to the tests when appropriate.
  • Commit your changes to your fork.
  • Locally merge (or rebase) the upstream development branch into your topic branch:
git pull [--rebase] upstream master
  • Push to your branch:
git push origin <topic-branch-name>

Note: If you are making several changes at once please divide them into multiple pull requests.

License

By contributing your code, you agree to license your contribution under the MIT license.