Jira: assign an existing git branch to an issue

前端 未结 7 1151
别跟我提以往
别跟我提以往 2021-02-03 18:45

In JIRA connected with STASH you can create a feature branch for an issue using the button \'create branch\'. (That is nice to track the commits in this issue.)

If a dev

7条回答
  •  执念已碎
    2021-02-03 19:31

    ex-Stash developer here.

    Yes and no. Creating the branch though the UI is just a convenience. The important thing is that the name contains the JIRA key. If only one developer is working on the branch, it's fairly easy to just rename (delete + add) a branch with the appropriate name.

    git checkout old-branch
    git push -u origin old-branch:JIRAKEY-1234-something
    git push origin :old-branch
    

    Does that help?

提交回复
热议问题