[Clfs-dev] Official Announcement

Brett Neumeier bneumeier at gmail.com
Mon Sep 14 07:20:10 PDT 2009


On Sun, Sep 13, 2009 at 9:06 PM, Joe ciccone <jciccone at 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 (bneumeier at gmail.com)



More information about the Clfs-dev mailing list