* Bizarre problem cloning repo from Codeplex
@ 2012-10-26 22:48 Jeremy Morton
2012-11-10 7:49 ` Enrico Weigelt
0 siblings, 1 reply; 6+ messages in thread
From: Jeremy Morton @ 2012-10-26 22:48 UTC (permalink / raw)
To: git
I'm trying to clone the following repository from Codeplex:
https://git01.codeplex.com/entityframework.git
git downloads all the objects, creates the directory "entityframework",
then displays "error: RPC failed; result=56, HTTP code = 200" and
immediately deletes the directory.
I can clone other HTTPS repos with this git installation, for example
from Bitbucket and Github. It's git 1.7.10.4 on Debian. I can also
clone this codeplex repo OK on my windows git installation
(1.7.11.msysgit.1). I'm totally perplexed; anyone have any idea what is
going wrong with the Debian git installation here?
--
Best regards,
Jeremy Morton (Jez)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Bizarre problem cloning repo from Codeplex
2012-10-26 22:48 Bizarre problem cloning repo from Codeplex Jeremy Morton
@ 2012-11-10 7:49 ` Enrico Weigelt
2012-11-10 12:15 ` John Szakmeister
2012-11-10 15:23 ` Andreas Schwab
0 siblings, 2 replies; 6+ messages in thread
From: Enrico Weigelt @ 2012-11-10 7:49 UTC (permalink / raw)
To: Jeremy Morton; +Cc: git
> I'm trying to clone the following repository from Codeplex:
>
> https://git01.codeplex.com/entityframework.git
>
> git downloads all the objects, creates the directory
> "entityframework",
> then displays "error: RPC failed; result=56, HTTP code = 200" and
> immediately deletes the directory.
>
> I can clone other HTTPS repos with this git installation, for example
> from Bitbucket and Github. It's git 1.7.10.4 on Debian.
reproduced it on Ubuntu precise, git-1.7.9.5
When starting with an empty repo, adding the url as remote and calling
git remote update origin:
> Fetching origin
> WARNING: gnome-keyring:: couldn't connect to: /tmp/keyring-5cWq1d/pkcs11: No such file or directory
> remote: Counting objects: 21339, done.
> remote: Compressing objects: 100% (3778/3778), done.
> remote: Total 21339 (delta 17180), reused 21339 (delta 17180)
> Receiving objects: 100% (21339/21339), 11.24 MiB | 1.04 MiB/s, done.
> error: RPC failed; result=56, HTTP code = 200
> Resolving deltas: 100% (17180/17180), done.
> error: Could not fetch origin
But: refs/remotes/origin/master is added and looks sane (git fsck
shows no errors).
Subsequent 'git remote update' calls look good:
> Fetching origin
Even after manually removing the ref and re-running update,
everything look fine:
> Fetching origin
> WARNING: gnome-keyring:: couldn't connect to: /tmp/keyring-5cWq1d/pkcs11: No such file or directory
> From https://git01.codeplex.com/entityframework
> * [new branch] master -> origin/master
Their webserver seems to be configured quite restrictively
(eg. cannot access files like 'packed-refs').
Is there a way to trace the actual HTTP calls ?
cu
--
Mit freundlichen Grüßen / Kind regards
Enrico Weigelt
VNC - Virtual Network Consult GmbH
Head Of Development
Pariser Platz 4a, D-10117 Berlin
Tel.: +49 (30) 3464615-20
Fax: +49 (30) 3464615-59
enrico.weigelt@vnc.biz; www.vnc.de
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Bizarre problem cloning repo from Codeplex
2012-11-10 7:49 ` Enrico Weigelt
@ 2012-11-10 12:15 ` John Szakmeister
2012-11-10 15:23 ` Andreas Schwab
1 sibling, 0 replies; 6+ messages in thread
From: John Szakmeister @ 2012-11-10 12:15 UTC (permalink / raw)
To: Enrico Weigelt; +Cc: Jeremy Morton, git
On Sat, Nov 10, 2012 at 2:49 AM, Enrico Weigelt <enrico.weigelt@vnc.biz> wrote:
[snip]
> Their webserver seems to be configured quite restrictively
> (eg. cannot access files like 'packed-refs').
>
> Is there a way to trace the actual HTTP calls ?
Try GIT_CURL_VERBOSE=1. GIT_TRACE_PACKET=1 can be helpful too.
-John
PS Sorry for the duplicate. I meant to respond to the list as well.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Bizarre problem cloning repo from Codeplex
2012-11-10 7:49 ` Enrico Weigelt
2012-11-10 12:15 ` John Szakmeister
@ 2012-11-10 15:23 ` Andreas Schwab
2012-11-12 0:59 ` Enrico Weigelt
1 sibling, 1 reply; 6+ messages in thread
From: Andreas Schwab @ 2012-11-10 15:23 UTC (permalink / raw)
To: Enrico Weigelt; +Cc: Jeremy Morton, git
Enrico Weigelt <enrico.weigelt@vnc.biz> writes:
> Their webserver seems to be configured quite restrictively
> (eg. cannot access files like 'packed-refs').
Probably it just doesn't exist.
Andreas.
--
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
"And now for something completely different."
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Bizarre problem cloning repo from Codeplex
2012-11-10 15:23 ` Andreas Schwab
@ 2012-11-12 0:59 ` Enrico Weigelt
2012-11-12 7:44 ` Andreas Schwab
0 siblings, 1 reply; 6+ messages in thread
From: Enrico Weigelt @ 2012-11-12 0:59 UTC (permalink / raw)
To: Andreas Schwab; +Cc: Jeremy Morton, git
> > Their webserver seems to be configured quite restrictively
> > (eg. cannot access files like 'packed-refs').
>
> Probably it just doesn't exist.
Aren' these files requied ?
cu
--
Mit freundlichen Grüßen / Kind regards
Enrico Weigelt
VNC - Virtual Network Consult GmbH
Head Of Development
Pariser Platz 4a, D-10117 Berlin
Tel.: +49 (30) 3464615-20
Fax: +49 (30) 3464615-59
enrico.weigelt@vnc.biz; www.vnc.de
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Bizarre problem cloning repo from Codeplex
2012-11-12 0:59 ` Enrico Weigelt
@ 2012-11-12 7:44 ` Andreas Schwab
0 siblings, 0 replies; 6+ messages in thread
From: Andreas Schwab @ 2012-11-12 7:44 UTC (permalink / raw)
To: Enrico Weigelt; +Cc: Jeremy Morton, git
Enrico Weigelt <enrico.weigelt@vnc.biz> writes:
>> > Their webserver seems to be configured quite restrictively
>> > (eg. cannot access files like 'packed-refs').
>>
>> Probably it just doesn't exist.
>
> Aren' these files requied ?
No. If you've never run git pack-refs it's never created.
Andreas.
--
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
"And now for something completely different."
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-11-12 7:44 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-26 22:48 Bizarre problem cloning repo from Codeplex Jeremy Morton
2012-11-10 7:49 ` Enrico Weigelt
2012-11-10 12:15 ` John Szakmeister
2012-11-10 15:23 ` Andreas Schwab
2012-11-12 0:59 ` Enrico Weigelt
2012-11-12 7:44 ` Andreas Schwab
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).