How to close off a Git Branch?

前端 未结 3 462
予麋鹿
予麋鹿 2021-01-29 17:55

I\'m starting out using Git + GitHub.

In our distributed team, each member is creating their own branch for each issue/requirement they are allocated.

3条回答
  •  半阙折子戏
    2021-01-29 18:06

    Yes, just delete the branch by running git push origin :branchname. To fix a new issue later, branch off from master again.

提交回复
热议问题