I have a small repo with a master and an experimental branch for trying out some new features. I decided not to implement those features on the master.
What happens to the commits of the experimental branch when I delete that branch using git push origin --delete <branchName>
? Will git keep some non accessible remnants? If I remember well I have tags on that branch and it is uploaded to github. Will this cause any problem?
edit:
I checked with gitk --all
as suggested, the commit graph looks like this:
What I want to remove the babel branch with all of its commits, and I don't want it to be restorable. Is this possible?