On Sun, Sep 13, 2009 at 9:06 PM, Joe ciccone <jcicc...@gmail.com> wrote: > Those Git tags were imported from SVN where no annotation was possible, for > future tags that would be useful. I think there may be a way for me to update > the current tags. Let me look into it.
You could do something like: for TAG in $(git tag) do git checkout $TAG git tag -d $TAG git tag -a -m "tag imported from SVN" $TAG done git push --tags That's kind of simplistic, and has the drawback that all of the tags will have a timestamp of approximately now (as opposed to when the tag was actually created). But it works... Cheers, bn -- Brett Neumeier (bneume...@gmail.com) _______________________________________________ Clfs-dev mailing list Clfs-dev@lists.cross-lfs.org http://lists.cross-lfs.org/listinfo.cgi/clfs-dev-cross-lfs.org