Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 1.74 KB

oss.md

File metadata and controls

50 lines (32 loc) · 1.74 KB

Contributing to Open Source (and make your repository more friendly to fellow developers)

How to contribute to Open Source

  • (This is generally the standard, however each repo is unique in it's own way)
  1. Fork github repository
  2. (In a terminal) Clone forked repository and move to cloned Directory
    • git clone https://github.com/<your-username>/<repo-name>.git
    • cd <repo-name>
  3. Create and Switch to new branch
    • git checkout -b <branch-name>
  4. Make changes to the selected branch on the forked repository
  5. After your changes are done, change directory until you are at repository's root
  6. Git Add Files
    • git add .
  7. Git Commit
    • git commit -m "<Describe edits / commit>"
  8. Git Push
    • git push origin <branch name>
  9. Open Pull Request

How to make your Repo more friendly to fellow developers

  • Check the Insights Tab > Community

  • The more a project owner adds from the the Community Section, the more friendly the repo is to other devs
    • Like in all github things, the more green the better. So turn that yellow progress bar into a green one.

Resources


start over