You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some conditions I have to backport hotfixes to older versions.
So I have to create a branch from an older tag (git checkout -b release-4.1.9 v4.1.9) apply the fixes (e.g. cherry pick from master), push the version (e.g. with
for backports you can adjust your hooks in the corresponding branch to perform the release on other branches than the default develop or master.
There is a merge request (#14) which is about to being merged and which fixes the release branches not to have the snapshot version included.
Maybe in this situation we can adjust the hooks and push the release branch automatically to resolve your issue.
In some conditions I have to backport hotfixes to older versions.
So I have to create a branch from an older tag (
git checkout -b release-4.1.9 v4.1.9
) apply the fixes (e.g. cherry pick from master), push the version (e.g. withrelease-scripts/.hooks-default.sh
Line 71 in 285c9a5
) create a new
git tag
without merging the commit pack to master.Following steps have to been executed manually:
The text was updated successfully, but these errors were encountered: