When I use the git branch
command, it displays only one local branch: master
However, when I use the git branch -a
command, it displays the initial master
branch as well as two remote master branches:
remotes/wilhelm/master
remotes/origin/master
Why do I have two remote branches and how do I delete the extra branch without deleting my remote repo?