In Git, what does \"deletion\" of a branch mean?
Will it be gone from the repository? Or will it still be navigable to via git branch?
git branch
What I reall
git branch -D will delete your branch from repository. You will not be able to see it or navigate anymore. Also you will lose all file changes made in that branch.
git branch -D
https://git-scm.com/docs/git-branch