Skip to main content

github-flow

Github Flow

  • Clone the project git clone https://github.com/superpowr/powr.git
  • Create a branch:-
    • git checkout -b feature/yourbranch for features
    • git checkout -b bugfix/yourbranch or git checkout -b hotfix/yourbranch for any bugfixes.
    • git checkout -b chore/yourbranch for any small tasks (POWr Hour for example)
  • Frequently commit your changes, please follow this instruction to setup your [[Commit Template].
  • Push your branch to github git push origin branch/name
  • Create a pull-request Documentation
  • Assign the reviewers Documentation
    • git blame file/path/file/name will give you an ideal who may is familiar with the codebase you have worked on, so please make sure to include that person on reviewer list.
    • We are trying to optimize our code for faster response and better maintainability each and every day, so please include me (Puru) as a reviewer as well. I would love to check and see if there is any room for improvements.
    • Any feature or major bug fixes cannot be merged into master before reviewers give you 👍.