How to close off a Git Branch?

前端 未结 3 459
予麋鹿
予麋鹿 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:13

    after complete the code first merge branch to master then delete that branch

    git checkout master
    git merge 
    git branch -d 
    

提交回复
热议问题