- Fork it.
- Clone your forked project on your devbox:
git clone http://github.com/<your_name>/cloudbox
- Create a feature branch off of the develop branch:
git checkout -b 'feature/my-new-feature' develop
- Keep up to date with latest develop branch changes:
git pull --rebase upstream develop
. <--- Do this often, especially before commiting changes and submitting a PR. - Commit your changes:
git commit -am 'Added some feature'
- Push to the branch:
git push origin feature/my-new-feature
- Submit a pull request (PR) to the develop branch.