I am about to complete a tedious process of converting \"dumb snapshots\" to git. This process has been going very well (thanks to this rename process), but now I realized that
Was there separate development on these branches? (the post you linked to, doesn't appear to have development on those branches) If there was no development, you could:
git checkout branchName
.git tag tagName
. git checkout master
.git branch branchName -d
.This can also be done if there was development on the branch, but you will need to use -D
instead of -d
. I'm not a git pro though, so not sure if that is an "acceptable" way to leave a branch.