Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 811 Bytes

contributing.md

File metadata and controls

33 lines (27 loc) · 811 Bytes

Contributing

  1. Fork the repository to your own GitHub account.
  2. Clone your fork of the repository locally
git clone git://github.com/USERNAME/hifi-content.git
  1. Create a new branch
git checkout -b new_branch_name 
  1. Code
  1. Commit
  • Use well formed commit messages
  1. Update your branch
git remote add upstream https://github.com/highfidelity/hifi-content
git pull upstream master

Resolve any conflicts that arise with this step.

  1. Push to your fork
git push origin master
  1. Submit a pull request

You can follow GitHub's guide to find out how to create a pull request.