Skip to main content

Trunk-based Development

https://trunkbaseddevelopment.com

OrderDescriptionCommand
1Fork repo from upstream-
2Create new branch from upstream/mastergit checkout -b $BRANCH_NAME upstream/master
3Add commitsgit add * && git commit -m "$COMMIT_MESSAGE"
4Make a pull requestgh pr create, then follow on-screen prompts
5Wait for approvals then merge the PR-

Repeat 2-5 for every new PR.