+ handles tags with funny chars a bit better + will check tagrefs, trying to ensure it actually has the relevant commits. If the commits are missing, it'll go out and fetch them. This isn't a complete solution for cg-fetch -- git-fetch is actually much smarter now, and cg-fetch should perhaps be a thin wrapper around it, dropping all the duplicate code. Signed-off-by: Martin Langhoff <martin@catalyst.net.nz> --- cg-fetch | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) applies-to: 38ed7981343a8e2bb734d64e019186a8a482dbef 21a91d74a6807677f8e59c737fee3692d0f392e8 diff --git a/cg-fetch b/cg-fetch index 7694584..625444c 100755 --- a/cg-fetch +++ b/cg-fetch @@ -416,8 +416,9 @@ $get -i -s -u -d "$uri/refs/tags" "$_git cd $_git/refs/tags for tag in *; do [ "$tag" = "*" ] && break - tagid=$(cat $tag) - GIT_DIR=../.. git-cat-file -t "$tagid" >/dev/null 2>&1 && continue + tagid=$(cat "$tag") + GIT_DIR=../.. git-cat-file commit `git-rev-parse --verify "$tag"^{commit} 2>/dev/null` 2>/dev/null >> /dev/null && continue + GIT_DIR=../.. git-cat-file blob `git-rev-parse --verify "$tag"^{blob} 2>/dev/null` 2>/dev/null >> /dev/null && continue echo -n "Missing object of tag $tag... " if [ "$fetch" != "fetch_rsync" ] && GIT_DIR=../.. $fetch "$tagid" "$uri" 2>/dev/null >&2; then echo "retrieved" --- 0.99.8.GIT - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Thu Oct 20 14:43:18 2005
This archive was generated by hypermail 2.1.8 : 2005-10-20 14:43:21 EST