For bug reports or requests please submit an issue.
For new feature contribution, please follow the following instruction:
-
Fork the repo https://github.com/tranlyvu/Self-Driving-Car-Engineer-Part-1.git to your own github
-
Clone from your own repo
$ git clone https://github.com/<your name>/Self-Driving-Car-Engineer-Part-1.git
- Make sure you are at dev branch
$ git checkout dev && git pull
- Create your feature/bug-fix branch
$ git checkout -b <feature/bug>/<branch-name>
- Commit your changes
$ git commit -am 'Add some new feature'
- Push to the branch
$ git push
-
Go to your own repo and create a new Pull Request against 'dev' branch
-
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