Skip to content

Latest commit

 

History

History
37 lines (21 loc) · 977 Bytes

CONTRIBUTING.md

File metadata and controls

37 lines (21 loc) · 977 Bytes

Instructions for contributors

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/Self-Driving-Car-Engineer-Part-1.git to your own github

  2. Clone from your own repo

$ git clone https://github.com/<your name>/Self-Driving-Car-Engineer-Part-1.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

  2. To sync your forked repo with my repo

$ git remote add upstream https://github.com/tranlyvu/Self-Driving-Car-Engineer-Part-1.git
$ git checkout master
$ git merge upstream/master