-
Fork the project repository on GitHub.
-
Clone your instance of the repository to your development environment.
git clone [email protected]:YOUR_USERNAME/Lessig2016.github.io.git cd Lessig2016.github.io git remote add upstream git://github.com/Lessig2016/Lessig2016.github.io.git -
Follow any installation instructions included in the project README.md.
-
Create your feature branch.
git checkout -b my-new-feature -
Implement your feature or fix, including tests where applicable.
-
Commit your change.
Please follow the one logical change per commit rule and include a meaningful commit message to describe each change. For example:
git commit -am 'Added some feature and some tests' -
Merge the latest version of the
upstream/masterbranch to ensure compatibility with the latest state of the repository.git fetch upstream git merge upstream/master -
Push your feature branch back to GitHub.
git push origin my-new-feature -
Submit a pull request.
A member of our core team will review your pull request as soon as possible. Any subsequent changes should be applied in a separate commit and pushed to your feature branch. Post a comment in the pull request to notify the team of your change.