Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 505 Bytes

CONTRIBUTING.md

File metadata and controls

21 lines (16 loc) · 505 Bytes

Contributing Guidelines

👍🎉 First off, thanks for taking the time to contribute! 🎉👍

Please follow the git workflow outlined below:

  1. git checkout master
  2. git pull --rebase upstream master
  3. git checkout -b feature-branch
  4. edit/git add/git commit
  5. git pull --rebase upstream master
  6. git push origin feature-branch
  7. Submit PR

If merged: 8. make more commits to feature-branch 9. git push origin feature branch

If not: git checkout master git pull --rebase upstream master