https://trello.com/c/FPKxbzam/4-plan-out-features-and-make-people-into-groups
- Fork the repo (in GitHub's interface)
- Clone your fork to your machine (
git clone <ssh url from your fork> rmhc
) - Make sure Meteor is installed. On Mac OS, you can install Meteor with
curl https://install.meteor.com/ | sh
. cd
into your project folder, and open it withatom .
orsublime .
(depending on what editor you are using)- Create a feature branch for the feature you are adding, i.e. if I'm adding a map to a screen, I might do
git checkout -b feature/map
. Keep this branch checked out until the feature is complete. - Start your local dev server with
meteor
. - Get hacking.
- When ready to create a pull request: Make your commit messages (i.e.
git add .; git commit -am "Adding a map"; git push ...;
Then go to GitHub, and create a pull request to the upstream repo.