articleswikiproducts
RSS feed
contact
articleswikiproducts
RSS feed
contact
articleswiki
products

Made by nerdfish, development with user experience in mind.

Github
All wiki

git flow with rebasing

06 April 2022

You can read this blog article to see why this is a successful way of branching. In this flow, we have the main branch and a development branch.

Working with GitHub

Features

  • First, you open a Pull Request against the development branch.
  • When the Pull Request is approved, merge using squash and merge, adding the ticket number and a brief description: i.e., feat(unicorn): add a tail.

That squashes your PR into one commit on the development branch. If there are conflicts, you need to rebase against development again. To do that, you run the following command in your feature branch.

Releases

  • First, open a Pull Request against the main branch
  • When the PR is approved, and the staging deployment has been verified by QA, merge using rebase and merge. DO NOT SQUASH MERGE!
  • Repeat the steps above against development (may need to rebase first if hotfixes have deployed).
  • Tag a release on main. Use the version number and put the changelog in the description. (Can be done automatically with a GitHub action).
git pull --rebase origin development
git push --force-with-lease