The objective of this repository is twofold: to collaboratively create a good set of notes for the whole class and to practice working on a real git repository.
- Fork it on github.com
- Clone your fork (
git clone git@github.com:<username>/hacker_you_notes.git
) - Add the original repo as upstream (
git remote add upstream https://github.com/aomra015/hacker_you_notes.git
) - Create your feature branch (
git checkout -b my-new-feature
). This isolates your changes into their own branch, making contributions easier to merge. - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request on github.com
- Keep your fork up to date with
git pull upstream master
More information about the above workflow can be found on Forking Workflow