Script to generate git tags for svn tags

This commit is contained in:
Alexander van Gessel 2012-09-23 02:08:39 +01:00
parent a2b50480b7
commit cca526d467

View file

@ -0,0 +1,3 @@
#!/bin/bash
for i in `git branch -r -l|grep tags|sed 's#.*tags/##'`;do git tag $i tags/$i -m "SVN tag $i";done