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
Since a while we get this error when finishing a hotfix branch. Do you know what could be the root cause? It worked before, but we might have updated to a new versions of your plugin.
[ERROR] Failed to execute goal com.amashchenko.maven.plugin:gitflow-maven-plugin:1.20.0:hotfix-finish (default-cli) on project helm-whs: hotfix-finish: warning: not deleting branch 'hotfix-24.6.9' that is not yet merged to
[ERROR] 'refs/remotes/origin/hotfix-24.6.9', even though it is merged to HEAD.
[ERROR] error: The branch 'hotfix-24.6.9' is not fully merged.
[ERROR] If you are sure you want to delete it, run 'git branch -D hotfix-24.6.9'.
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
The text was updated successfully, but these errors were encountered:
Ah i now see that it is related to the fact that we use a SNAPSHOT on the hotfix branch. The plugin does the version change before merging it to master, and create a commit on the hotfix branch. The git command that you do for removing the branch complains about having a hotfix branch locally that is not in sync with the origin because of this 1 commit, and doesn't want to delete the branch.
Since a while we get this error when finishing a hotfix branch. Do you know what could be the root cause? It worked before, but we might have updated to a new versions of your plugin.
[ERROR] Failed to execute goal com.amashchenko.maven.plugin:gitflow-maven-plugin:1.20.0:hotfix-finish (default-cli) on project helm-whs: hotfix-finish: warning: not deleting branch 'hotfix-24.6.9' that is not yet merged to
[ERROR] 'refs/remotes/origin/hotfix-24.6.9', even though it is merged to HEAD.
[ERROR] error: The branch 'hotfix-24.6.9' is not fully merged.
[ERROR] If you are sure you want to delete it, run 'git branch -D hotfix-24.6.9'.
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
The text was updated successfully, but these errors were encountered: