Steve Keller <keller.steve@xxxxxx> wrote: > After converting from SVN to git using git svn init + git svn fetch, > my SVN tags appear as remote branches in git. I find many suggestions > to convert these to git tags by calling git tag -a <tag-name> <branch-name> > but this gives something like this Hi Steve, instead of an annotated tag ("-a"), you can use a lightweight tag by omitting the "-a". Fwiw, I chose to map SVN "tags" to remote branches in git since some projects I followed back in the day had moving tags in SVN.