# HG changeset patch # User Augie Fackler # Date 1240630434 18000 # Node ID 77892f67b1cd102d5d1528bb66ba201f4a395f21 # Parent 8ff0b3261b7fd4144d695c943d4a2097811c1241 tools: bash script to convert tags as a stopgap until the tags refactor diff --git a/tools/converttags.sh b/tools/converttags.sh new file mode 100644 --- /dev/null +++ b/tools/converttags.sh @@ -0,0 +1,9 @@ +#!/bin/bash +# This shell script exists to convert hgsubversion tags to real hg tags. +# This will go away once hgsubversion's tags handling uses .hgtags directly. +hg tags | sed -E 's/([a-zA-Z0-9./_-]*) [^:]*:([a-f0-9]*)/\2 \1/' | grep -v ' tip$' > .hgtags +cat .hgtags | sed "$( +for x in `cat .hgtags| cut -f 1 -d ' '` ;do + echo -n "s/$x/" ; hg log --template '{node}' -r $x ; echo -n '/g; ' +done)" > .hgtags.new +mv .hgtags.new .hgtags