4.5 KiB
Contributing to NodeMCU
👍🎉 First off, thanks for taking the time to contribute! 🎉👍
We're really glad you're reading this, because we need volunteer developers to help this project come to fruition.
The following is a set of guidelines for contributing to NodeMCU 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.
Table Of Contents
Development environment setup
Use the platform and tools you feel most comfortable with. There are no constraints imposed by this project. You have (at least) two options to set up the toolchain to build the NodeMCU firmware:
- Full-fledged Linux enviroment, either physical or virtual.
- Docker image which allows to run the build inside the container as if you were running a build script on your local machine.
Working with Git and GitHub
Pull requests for new features and major fixes should be opened against the dev
branch.
Avoid intermediate merge commits. Rebase your feature branch onto dev
to pull updates and verify your local changes against them before placing the pull request.
General flow
- Fork the NodeMCU repo on GitHub.
- Create a branch in your fork on GitHub based on the
dev
branch. - Clone the fork on your machine with
git clone https://github.com/<your-account>/<nodemcu-fork>.git
cd <nodemcu-fork>
then rungit remote add upstream https://github.com/nodemcu/nodemcu-firmware.git
git checkout <branch-name>
- Make changes to the code base and commit them using e.g.
git commit -a -m 'Look ma, I did it'
- When you're done:
- Squash your commits into one. There are several ways of doing this.
- Bring your fork up-to-date with the NodeMCU upstream repo (see below). Then rebase your branch on
dev
runninggit rebase dev
. git push
- 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 documenation contains a wealth of information as well.
Keeping your fork in sync
You need to sync your fork with the NodeMCU upstream repository from time to time, latest before you rebase (see flow above).
git fetch upstream
git checkout dev
but you may do this formaster
as wellgit merge upstream/dev
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.