I've been following Scott Chacon's Pro Git Book and I'm reaching the end of chapter 3 in which we have just done a three way merge. See the diagram below (my own drawn diagram not a screen grab of the book):
After doing the merge of 'master' with 'issue53', resulting in merge commit c6, the author says we can delete branch 'issue53'.
git branch -d issue53
What actually happens to that branch under the hood and what would the resultant diagram look like? I ask this because the author does not address the issue. Would the branch still be there but just not pointed to? or is there some magic going on that I'm unaware of?