Guide below will explain the process of submitting a pull request (PR).
-
Fork it.
-
Clone your forked project:
git clone http://github.com/<your_github_username>/cloudplow -
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 -
Commit your changes:
git commit -am 'Added some feature' -
Push commits to the feature branch:
git push origin feature/my-new-feature -
Submit feature branch as a PR to our develop branch.