Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 1.56 KB

File metadata and controls

49 lines (31 loc) · 1.56 KB

Contributing

Software and Documentation Contributions

  1. Fork the project repository on GitHub.

  2. 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
    
  3. Follow any installation instructions included in the project README.md.

  4. Create your feature branch.

    git checkout -b my-new-feature
    
  5. Implement your feature or fix, including tests where applicable.

  6. 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'
    
  7. Merge the latest version of the upstream/master branch to ensure compatibility with the latest state of the repository.

    git fetch upstream
    git merge upstream/master
    
  8. Push your feature branch back to GitHub.

    git push origin my-new-feature
    
  9. 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.