Is it possible to "unlink" commit from tag?
What I want is, I want to delete binary
branch which have tags in it as shown below;
master ----A----B----C----D
binary ----V----W----X----Y
\ \ \ \
tag1 tag2 tag3 tag4
I tried to delete it by $ git push origin :binary
.
This command deletes binary
branch from remote server but the repository size is the same as before.
I assume it is because the tags are attached onto V W X Y
commits.
How can I completely remove binary
branch and it's contents without deleting tags?