git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] cg-fetch will now retrieve commits related to tags if missing.
@ 2005-10-20  0:55 Martin Langhoff
  2005-10-20  1:25 ` Junio C Hamano
  0 siblings, 1 reply; 7+ messages in thread
From: Martin Langhoff @ 2005-10-20  0:55 UTC (permalink / raw)
  To: git; +Cc: Martin Langhoff

Signed-off-by: Martin Langhoff <martin@catalyst.net.nz>


---

 cg-fetch |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

applies-to: 38ed7981343a8e2bb734d64e019186a8a482dbef
48cb643964910a058881307513cb63aeee28a1de
diff --git a/cg-fetch b/cg-fetch
index 7694584..d4650e5 100755
--- a/cg-fetch
+++ b/cg-fetch
@@ -417,7 +417,8 @@ $get -i -s -u -d "$uri/refs/tags" "$_git
 	for tag in *; do
 		[ "$tag" = "*" ] && break
 		tagid=$(cat $tag)
-		GIT_DIR=../.. git-cat-file -t "$tagid" >/dev/null 2>&1 && continue
+		GIT_DIR=../.. [ "`git-cat-file -t $tagid 2>/dev/null`" = "commit" ] && continue
+		GIT_DIR=../.. git-cat-file commit `git-rev-parse $tag^{commit}  2>/dev/null` 2>&1 >> /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

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2005-10-20  5:23 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-20  0:55 [PATCH] cg-fetch will now retrieve commits related to tags if missing Martin Langhoff
2005-10-20  1:25 ` Junio C Hamano
2005-10-20  4:15   ` Martin Langhoff
2005-10-20  4:18   ` Martin Langhoff
2005-10-20  4:44     ` Junio C Hamano
2005-10-20  4:59       ` Martin Langhoff
2005-10-20  5:23         ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).