Skip to content

Latest commit

 

History

History
73 lines (53 loc) · 5.23 KB

CONTRIBUTING.md

File metadata and controls

73 lines (53 loc) · 5.23 KB

Contributing to ThingPulse Weather Station

👍🎉 First off, thanks for taking the time to contribute! 🎉👍

The following is a set of guidelines for contributing to the ThingPulse Weather Station project on GitHub. These are just guidelines, not rules, use your best judgment and feel free to propose changes to this document in a pull request.

It is appreciated if you raise an issue before you start changing the code, discussing the proposed change; emphasizing that you are proposing to develop the patch yourself, and outlining the strategy for implementation. This type of discussion is what we should be doing on the issues list and it is better to do this before or in parallel to developing the patch rather than having "you should have done it this way" type of feedback on the PR itself.

Table Of Contents

General remarks

We are a friendly and welcoming community and look forward to your contributions. Once your contribution is integrated into this repository we feel responsible for it. Therefore, be prepared for constructive feedback. Before we merge anything we need to ensure that it fits in and is consistent with the rest of code. If you made something really cool but won't spend the time to integrate it into this upstream project please still share it in your fork on GitHub. If you mention it in an issue we'll take a look at it anyway.

Writing Documentation

ThingPulse maintains documentation for its products at https://github.com/thingpulse/docs/. If you contribute features for this project that require altering the respective product guide then we ask you to prepare a pull request with the necessary documentation changes as well.

Working with Git and GitHub

Avoid intermediate merge commits. Rebase your feature branch onto master to pull updates and verify your local changes against them before placing the pull request.

General flow

  1. Fork this repository on GitHub.
  2. Create a branch in your fork on GitHub based on the master branch.
  3. Clone the fork on your machine with git clone https://github.com/<your-account>/<weather-station-fork>.git
  4. cd <weather-station-fork> then run git remote add upstream https://github.com/ThingPulse/esp8266-weather-station
  5. git checkout <branch-name>
  6. Make changes to the code base and commit them using e.g. git commit -a -m 'Look ma, I did it'
  7. When you're done:
  8. Think about squashing (some of) your commits. There are several ways to do this. There's no need to squash everything into a single commit as GitHub offers to do this when we merge your changes. However, you might want to trim your commit history to relevant chunks.
  9. Bring your fork up-to-date with the upstream repo (see below). Then rebase your branch on master running git rebase master.
  10. git push
  11. Create a pull request (PR) on GitHub.

This is just one way of doing things. If you're proficient in Git matters you're free to choose your own. If you want to read more then the GitHub chapter in the Git book is a way to start. GitHub's own documentation contains a wealth of information as well.

Keeping your fork in sync

You need to sync your fork with the upstream repository from time to time, latest before you rebase (see flow above).

  1. git fetch upstream
  2. git checkout master
  3. git merge upstream/master

Commit messages

From: http://git-scm.com/book/ch5-2.html

Short (50 chars or less) summary of changes

More detailed explanatory text, if necessary.  Wrap it to about 72
characters or so.  In some contexts, the first line is treated as the
subject of an email and the rest of the text as the body.  The blank
line separating the summary from the body is critical (unless you omit
the body entirely); tools like rebase can get confused if you run the
two together.

Further paragraphs come after blank lines.

 - Bullet points are okay, too

 - Typically a hyphen or asterisk is used for the bullet, preceded by a
   single space, with blank lines in between, but conventions vary here

Don't forget to reference affected issues in the commit message to have them closed automatically on GitHub.

Amend your commit messages if necessary to make sure what the world sees on GitHub is as expressive and meaningful as possible.