Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 579 Bytes

CONTRIBUTING.md

File metadata and controls

9 lines (8 loc) · 579 Bytes

Contributing

  1. Fork it.
  2. Clone your forked project on your devbox: git clone http://github.com/<your_name>/cloudbox
  3. Create a feature branch off of the develop branch: git checkout -b 'feature/my-new-feature' develop
  4. 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.
  5. Commit your changes: git commit -am 'Added some feature'
  6. Push to the branch: git push origin feature/my-new-feature
  7. Submit a pull request (PR) to the develop branch.