Hello this is my git workflow. I'm trying to create by using Sourcetree a new hotfix. Unfortunately I get this error:
There is an existing hotfix branch (issue-#001). Finish that one first.
I have already finished the issue-#001
. Why I'm unable to create a new one?
You need to delete the existing branch with the same name if you want to create it again . Git would not allow you to create branches with duplicate names.
You can also try to update the hotfix branch by merging in the latest master and then work on the updated branch