On Sun, Sep 13, 2009 at 9:06 PM, Joe ciccone <[email protected]> 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 ([email protected])
_______________________________________________
Clfs-dev mailing list
[email protected]
http://lists.cross-lfs.org/listinfo.cgi/clfs-dev-cross-lfs.org

Reply via email to