Contributing
Git Flow
The project will follow GitHub Flow. The essential rules are as follows.
NEVER commit directly to the
mainbranch. Always create a branch with a descriptive name likeapply-lint-to-project.Open a Pull Request to merge the branch into the
mainbranch.All code in the
mainbranch should be working, deployable code.
Pull Request and Issues
Whenever working on something, always create a issue and a pull request.
https://github.com/chat-as-a-service/general-api/pull/1 is a good example.
Keep pull requests simple and short. This makes it easy to review. For example, each pull request can be a feature like account signup.
Last updated