Martin Langhoff <martin.langhoff@gmail.com> writes: >> GIT_DIR=../.. git-rev-parse --verify "$tagid^0" >/dev/null 2>&1 && continue > > Note however that git-rev-parse is lazy and won't check that the > commit is there. I have to call git-cat-file and check whether it > succeeds to know if we have the object. Are you sure? What "rev^0" does is: 1. parse "rev"; make sure it can deref to commit and read it (otherwise give up and say the whole thing is not an SHA1 expression); 2. grab the nth parent SHA1. If N>0, it is lazy and does not check if the parent object exists, but still 0th parent is the commit object itself and if we came this far you know that commit is available already. Together with --verify, it barfs if the above does not say "rev^0" is a valid SHA1 expression. So this should work without cat-file. No? BTW, I just got a SEGV while pulling Cogito repository over git-fetch-pack after interrupting rsync transfer (I wanted to switch to git transfer). I am running with Johaness patch from today so the cause may be different from yours, but now I have something to look at, which is better than before. Fetching with rsync (and interrupting in the middle) is a good way to simulate a broken repository ;-). - 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:45:24 2005
This archive was generated by hypermail 2.1.8 : 2005-10-20 14:45:28 EST