When to delete branches in Git?

前端 未结 8 2024
走了就别回头了
走了就别回头了 2021-01-29 17:36

Suppose we have an application that\'s stable.

Tomorrow, someone reports a big ol\' bug that we decide to hotfix right away. So we create a branch for that hotfix off o

8条回答
  •  离开以前
    2021-01-29 18:26

    You can delete branches in all major web UIs such as github, BitBucket. After deleting the branch online, you can delete the local branch using

    git remote prune origin
    

提交回复
热议问题