Hotfix branch
Tworzenie
git checkout -b hotfix-1.1.1 master
...
git commit -m "Hotfix 1.1.1."
git checkout master
git merge --no-ff hotfix-1.1.1
git tag -a 1.1.1
git push origin master
git push --tags
Łączenie z branchem develop
git checkout develop
git pull origin develop
git merge --no-ff hotfix-1.1.1
Po tych operacjach branch develop będzie wyglądać następująco: