Skip to content

Latest commit

 

History

History
69 lines (38 loc) · 1.98 KB

CONTRIBUTING.md

File metadata and controls

69 lines (38 loc) · 1.98 KB

Instructions for contributors

Contributions are welcome! For bug reports or requests please submit an issue.

For new feature contribution, please follow the following instruction:

  1. Fork the repo https://github.com/tranlyvu/cloud-computing-specialization.git to your own github

  2. Clone from your own repo

$ git clone https://github.com/<your name>/cloud-computing-specialization.git

  1. Make sure you are at dev branch

$ git checkout dev && git pull

  1. Create your feature/bug-fix branch

$ git checkout -b <feature/bug>/<branch-name>

  1. Commit your changes

$ git commit -am 'Add some new feature'

  1. Push to the branch

$ git push

  1. Go to your own repo and create a new Pull Request against 'dev' branch =======

Instructions for contributors

For bug reports or requests please submit an issue and briefly add the issue into the [release notes]

For new feature contribution, please follow the following instruction:

  1. Fork the repo https://github.com/tranlyvu/cloud-computing-specialization.git to your own github

  2. Clone from your own repo

$ git clone https://github.com/<your name>/cloud-computing-specialization.git

  1. Make sure you are at dev branch

$ git checkout dev && git pull

  1. Create your feature/bug-fix branch

$ git checkout -b <feature/bug>/<branch-name>

Do remember to add your name into the list of contributors if you have not done so before going to step 5.

  1. Commit your changes

$ git commit -am 'Add some new feature'

  1. Push to the branch

$ git push

  1. Go to your own repo and create a new Pull Request against 'dev' branch

  2. To sync your forked repo with my repo

$ git remote add upstream https://github.com/tranlyvu/cloud-computing-specialization.git
$ git checkout master
$ git merge upstream/master