git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* git clone problem
@ 2007-04-03  5:56 Aubrey Li
  0 siblings, 0 replies; 5+ messages in thread
From: Aubrey Li @ 2007-04-03  5:56 UTC (permalink / raw)
  To: git

Somehow I can't clone a git repository any more through http, which I
can do it before. Git clone always hangs at the same commit-ID,
without any error, warnings.
Please help, thanks.

Best Regards,
-Aubrey

=============================================
aubrey@ubuntu-feisty:~/upstream-uboot$ git-clone
http://www.denx.de/git/u-boot-blackfin.git

----snip----
walk d2c83f549378fb3fc34cb3c2e62fd772fbf8b68b
got b2e8b3c69774357044f39186a10cf1542bde6be5
got 2da827b326038662feb6f28cb0f9a3d86cef6b2e
got f9741f4fc9f4b1165c58d76dc58e0593808b84e5
got eb62a0abe8bdea88c563380c302a88fa64eff151
got 620d3c9a14affca29a5c4e575e9f355c2bd4aed2
got 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
got 0612ed5872dbec0736e779eb28748af04c0d4f1c
walk 620d3c9a14affca29a5c4e575e9f355c2bd4aed2
walk 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb
walk 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
walk e59581c56ab5d6e0207ddac3b2c1d55cb36ec706
walk dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385
walk e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120
walk 1954be6e9c9421b45d0a9d05b10356acc7563150
walk fae684e89844856383bdf101440889557df3e6b1
walk 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592
walk 1aa934c81b77f2080d3ca4b226eab67b17a33961
walk 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa
walk 1729b92cde575476684bffe819d0b7791b57bff2
got 3ab1a99fbc6527441b6932b20d3e0a262a9d5fdb
got a6c834c3ece23487b4f744bfc516c78aab800117
got 4be23a12f23f1372634edc3215137b09768b7949
--------hang here--------

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

* git clone problem
@ 2011-12-28 23:08 Steven Sroka
  0 siblings, 0 replies; 5+ messages in thread
From: Steven Sroka @ 2011-12-28 23:08 UTC (permalink / raw)
  To: git

Hello everyone,

I don't know whether I'm having a git problem or a Gitorious problem,
but when I try to clone a remote repository, I get this error:

[steven@chakra-pc Projects]$ git clone
https://git.gitorious.org/chakra/tribe.git
Cloning into 'tribe'...
error: Could not resolve host: git.gitorious.org; Cannot allocate
memory (curl_result = 6, http_code = 0, sha1 =
19e44a5608b262d81c06a00425db9e4f2d82ca98)
error: Unable to find 91fd634acca7d88abb449b379c7c6730bf0df33d under
https://git.gitorious.org/chakra/tribe.git
Cannot obtain needed tree 91fd634acca7d88abb449b379c7c6730bf0df33d
while processing commit 378b1f6d9bdca8ad3ce957a4f7a83c19691afb04.
error: Fetch failed.

Anyone know what is going one?

-- 
Steven Sroka
(lin-unix)

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

* git clone problem
@ 2017-01-25 16:58 Jordi Durban
  2017-01-25 17:58 ` Santiago Torres
  0 siblings, 1 reply; 5+ messages in thread
From: Jordi Durban @ 2017-01-25 16:58 UTC (permalink / raw)
  To: git

Hi all! Not sure if that will reach the goal, but let's it a try.

I have a problem with the git clone command: when I try to clone a 
remote repository with the following:

git clone --recursive https://github.com/whatever.git

what I actually obtain is a copy of my own files in the current directory.

I mean:

In the current directory:

$ls

-rwxr-xr-x 1  1,6K oct 24 17:29 get_fasta.pl
-rwxr-xr-x 1  1,6K set  5 13:05 script_clus_miRNA_c95.pl

$git clone --recursive https://github.com/whatever.git WHATEVER

$ls

-rwxr-xr-x 1  1,6K oct 24 17:29 get_fasta.pl
-rwxr-xr-x 1  1,6K set  5 13:05 script_clus_miRNA_c95.pl

-rwxr-xr-x 1  1,6K set  5 13:05 WHATEVER

$ls WHATEVER

-rwxr-xr-x 1  1,6K oct 24 17:29 get_fasta.pl
-rwxr-xr-x 1  1,6K set  5 13:05 script_clus_miRNA_c95.pl

I am really confused with that.

Any help will be appreciated. Thank you


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

* Re: git clone problem
  2017-01-25 16:58 Jordi Durban
@ 2017-01-25 17:58 ` Santiago Torres
  2017-01-27  9:18   ` Jordi Durban
  0 siblings, 1 reply; 5+ messages in thread
From: Santiago Torres @ 2017-01-25 17:58 UTC (permalink / raw)
  To: Jordi Durban; +Cc: git

[-- Attachment #1: Type: text/plain, Size: 1375 bytes --]

Hello, Jordi.

Hmm, it should've cloned in the "whatever" directory.

Can you post your git version/configs and maybe the output verbatim of
the command when you run it?

If you can reproduce in an empty dictionary that'd be better

$ mkdir test && cd test

$ git clone --recursive https://github.com/...

$ ls 

Thanks,
-Santiago

On Wed, Jan 25, 2017 at 05:58:58PM +0100, Jordi Durban wrote:
> Hi all! Not sure if that will reach the goal, but let's it a try.
> 
> I have a problem with the git clone command: when I try to clone a remote
> repository with the following:
> 
> git clone --recursive https://github.com/whatever.git
> 
> what I actually obtain is a copy of my own files in the current directory.
> 
> I mean:
> 
> In the current directory:
> 
> $ls
> 
> -rwxr-xr-x 1  1,6K oct 24 17:29 get_fasta.pl
> -rwxr-xr-x 1  1,6K set  5 13:05 script_clus_miRNA_c95.pl
> 
> $git clone --recursive https://github.com/whatever.git WHATEVER
> 
> $ls
> 
> -rwxr-xr-x 1  1,6K oct 24 17:29 get_fasta.pl
> -rwxr-xr-x 1  1,6K set  5 13:05 script_clus_miRNA_c95.pl
> 
> -rwxr-xr-x 1  1,6K set  5 13:05 WHATEVER
> 
> $ls WHATEVER
> 
> -rwxr-xr-x 1  1,6K oct 24 17:29 get_fasta.pl
> -rwxr-xr-x 1  1,6K set  5 13:05 script_clus_miRNA_c95.pl
> 
> I am really confused with that.
> 
> Any help will be appreciated. Thank you
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: git clone problem
  2017-01-25 17:58 ` Santiago Torres
@ 2017-01-27  9:18   ` Jordi Durban
  0 siblings, 0 replies; 5+ messages in thread
From: Jordi Durban @ 2017-01-27  9:18 UTC (permalink / raw)
  To: Santiago Torres; +Cc: git

Hi Santiago!

Thank you for your answer.

What I meant was that the "WHATEVER" directory contained the same files 
as the current directory (i.e the directory where I typed "git clone"). 
Thus, no files from the remote repository were cloned. It seemed really 
weird. However I was playing around with git and finally I was able to 
clone remote files in a "test" location as you suggested.

Thank you very much.


El 25/01/17 a les 18:58, Santiago Torres ha escrit:
> Hello, Jordi.
>
> Hmm, it should've cloned in the "whatever" directory.
>
> Can you post your git version/configs and maybe the output verbatim of
> the command when you run it?
>
> If you can reproduce in an empty dictionary that'd be better
>
> $ mkdir test && cd test
>
> $ git clone --recursive https://github.com/...
>
> $ ls
>
> Thanks,
> -Santiago
>
> On Wed, Jan 25, 2017 at 05:58:58PM +0100, Jordi Durban wrote:
>> Hi all! Not sure if that will reach the goal, but let's it a try.
>>
>> I have a problem with the git clone command: when I try to clone a remote
>> repository with the following:
>>
>> git clone --recursive https://github.com/whatever.git
>>
>> what I actually obtain is a copy of my own files in the current directory.
>>
>> I mean:
>>
>> In the current directory:
>>
>> $ls
>>
>> -rwxr-xr-x 1  1,6K oct 24 17:29 get_fasta.pl
>> -rwxr-xr-x 1  1,6K set  5 13:05 script_clus_miRNA_c95.pl
>>
>> $git clone --recursive https://github.com/whatever.git WHATEVER
>>
>> $ls
>>
>> -rwxr-xr-x 1  1,6K oct 24 17:29 get_fasta.pl
>> -rwxr-xr-x 1  1,6K set  5 13:05 script_clus_miRNA_c95.pl
>>
>> -rwxr-xr-x 1  1,6K set  5 13:05 WHATEVER
>>
>> $ls WHATEVER
>>
>> -rwxr-xr-x 1  1,6K oct 24 17:29 get_fasta.pl
>> -rwxr-xr-x 1  1,6K set  5 13:05 script_clus_miRNA_c95.pl
>>
>> I am really confused with that.
>>
>> Any help will be appreciated. Thank you
>>


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

end of thread, other threads:[~2017-01-27  9:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-03  5:56 git clone problem Aubrey Li
  -- strict thread matches above, loose matches on Subject: below --
2011-12-28 23:08 Steven Sroka
2017-01-25 16:58 Jordi Durban
2017-01-25 17:58 ` Santiago Torres
2017-01-27  9:18   ` Jordi Durban

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).