Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 869 Bytes

CONTRIBUTING.md

File metadata and controls

17 lines (14 loc) · 869 Bytes

Contributing

  1. Fork it ( https://github.com/[my-github-username]/unconfirm/fork )
  2. Create your feature/bug/refactor branch.
    • If its a bug-fix, create bug branch: bug/ or bug/
    • If its a new feature, create a feature branch: feature/
    • If its code refactoring with no changes to behavior: refactor/ (git checkout -b <feature/bug/refacator>/my-branch - we'll use feature/my-feature as an example in the rest of this section.)
  3. Ensure that there are tests to assert that your changes are working as expected.
  4. Commit your changes (git commit -a).
  5. Push to the branch (git push -u origin feature/my-feature).
  6. Create a new Pull Request.

git-extras helps with the above workflow.