Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 361 Bytes

CONTRIBUTE.md

File metadata and controls

22 lines (15 loc) · 361 Bytes

[DRAFT]

How to contribute

  • fork
  • clone fork
  • start a new branch git branch my-contrib
  • switch to the new branch git checkout my-contrib
  • do changes
  • commit&push
  • create pull request

To update forked repo localy

Before submitting a new pull request

  • git fetch upstream
  • git rebase upstream/master

OR

  • git pull --rebase upstream master