...
Creating a maintenance release branch
However, if we do hotfixes or maintenance releases for an older release, we will do it for a branch for that release.
...
Code Block |
---|
git checkout YOUR_TAGNAME_HERE -b YOUR_TAGNAME_HERE-maintenance |
This will create a branch from that tag, with the same name as the tag.
...
Code Block |
---|
git checkout YOUR_TAGNAME_HERE-maintenance |
You can now merge in commits from the master branch
...