I create the master and then a branch (named the_branch
) out of it. I modified the the_branch and then
git checkout master
git merge the_branch
git commit -m "..."
git push
Seems like code was merge and all seems right. My question, if I want the_branch
to "die" once I merge it, do I have to explicitly delete it, or there is a way that once I merge a branch into another it dies by default?