* problem with updating a shallow clone via a branch fetch
@ 2011-03-01 0:12 Rick Bradley
2011-03-01 0:25 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Rick Bradley @ 2011-03-01 0:12 UTC (permalink / raw)
To: git
So I have a git repo that is shallow cloned:
% git clone --depth 1 <repo url>
Sometimes (very rarely), when I do a branch fetch to update that
repository I get an error:
% git fetch origin +refs/head/<branch>:refs/remotes/origin/<branch>
fatal: did not find object for shallow <hash>
There are only 3 mentions of this error on google, none of which are
enlightening. The error is being emitted by receive_need(void) in
upload-pack.c. The commit in question exists in the named branch in
the upstream repository, and I'm not aware that anything sketchy
(forced pushes, etc.) has gone on. I'm going to continue to research
the history of the repo and the deployment, but I can't seem to get
any insight on what the error actually means (i.e., what conditions
would cause this error to be triggered).
Any help is appreciated,
Rick
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: problem with updating a shallow clone via a branch fetch
2011-03-01 0:12 problem with updating a shallow clone via a branch fetch Rick Bradley
@ 2011-03-01 0:25 ` Junio C Hamano
2011-03-01 2:07 ` Rick Bradley
0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2011-03-01 0:25 UTC (permalink / raw)
To: Rick Bradley; +Cc: git
Rick Bradley <rick@rickbradley.com> writes:
> So I have a git repo that is shallow cloned:
>
> % git clone --depth 1 <repo url>
>
> Sometimes (very rarely), when I do a branch fetch to update that
> repository I get an error:
>
> % git fetch origin +refs/head/<branch>:refs/remotes/origin/<branch>
>
> fatal: did not find object for shallow <hash>
The message comes from the repository you are fetching from. When you
fetch from a shallow clone, the fetch process on your end tells the other
side what commits your incomplete history ends at, and if the other end
does not have any of these commits, you get that message. So the only
case (unless there is a bug---and I don't think this codepath is heavily
exercised so it is very possible there are bugs) you would see that
message is if the other side rewound the branch and then later garbage
collection lost the commit.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: problem with updating a shallow clone via a branch fetch
2011-03-01 0:25 ` Junio C Hamano
@ 2011-03-01 2:07 ` Rick Bradley
2012-01-13 4:09 ` Rahul Jain
0 siblings, 1 reply; 4+ messages in thread
From: Rick Bradley @ 2011-03-01 2:07 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
Junio,
Thanks for the assistance. I'll be looking in the direction of what
could have caused sanity problems in the upstream repo. If it happens
again and we can collect more tea leaves (this checkout was cleaned up
before I could get a copy of it to do further diagnosis :-/) I'll see
what else we can find out.
Rick
On Mon, Feb 28, 2011 at 6:25 PM, Junio C Hamano <gitster@pobox.com> wrote:
> Rick Bradley <rick@rickbradley.com> writes:
>
>> So I have a git repo that is shallow cloned:
>>
>> % git clone --depth 1 <repo url>
>>
>> Sometimes (very rarely), when I do a branch fetch to update that
>> repository I get an error:
>>
>> % git fetch origin +refs/head/<branch>:refs/remotes/origin/<branch>
>>
>> fatal: did not find object for shallow <hash>
>
> The message comes from the repository you are fetching from. When you
> fetch from a shallow clone, the fetch process on your end tells the other
> side what commits your incomplete history ends at, and if the other end
> does not have any of these commits, you get that message. So the only
> case (unless there is a bug---and I don't think this codepath is heavily
> exercised so it is very possible there are bugs) you would see that
> message is if the other side rewound the branch and then later garbage
> collection lost the commit.
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-01-13 4:15 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-01 0:12 problem with updating a shallow clone via a branch fetch Rick Bradley
2011-03-01 0:25 ` Junio C Hamano
2011-03-01 2:07 ` Rick Bradley
2012-01-13 4:09 ` Rahul Jain
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).