Re: [git-users] issues with downloading project files from git

2014-08-18 Thread Magnus Therning
On Sun, Aug 17, 2014 at 09:25:38AM -0700, Chinedu Iroanyah wrote:
 
 
 when i run this command
 git clone g...@github.com:laravel/laravel.git
 
 i keep getting this result:
 
 Cloning into 'laravel'...
 Permission denied (publickey).
 fatal: Could not read from remote repository.
 
 Please make sure you have the correct access rights
 and the repository exists.
 
 pls can anyone help point me in the right direction? I am a newbe to both 
 git and laravel, i am trying to practice what i saw in Laravel Application 
 Development Cookbook

Try using HTTPS instead:

  % git clone https://github.com/laravel/laravel.git

/M

-- 
Magnus Therning  OpenPGP: 0xAB4DFBA4 
email: mag...@therning.org   jabber: mag...@therning.org
twitter: magthe   http://therning.org/magnus

I invented the term Object-Oriented, and I can tell you I did not have
C++ in mind.
 -- Alan Kay


pgpDNXQMsns_B.pgp
Description: PGP signature


[git-users] issues with downloading project files from git

2014-08-17 Thread Chinedu Iroanyah


when i run this command
git clone g...@github.com:laravel/laravel.git
i keep getting this result

Cloning into 'laravel'...
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

pls can anyone help point me in the right direction? I am a newbe to both 
git and laravel, i am trying to practice what i saw in Laravel Application 
Development Cookbook

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[git-users] issues with downloading project files from git

2014-08-17 Thread Chinedu Iroanyah


when i run this command
git clone g...@github.com:laravel/laravel.git


i keep getting this result:

Cloning into 'laravel'...
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

pls can anyone help point me in the right direction? I am a newbe to both 
git and laravel, i am trying to practice what i saw in Laravel Application 
Development Cookbook

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] issues with downloading project files from git

2014-08-17 Thread John McKown
Try

git clone https://github.com/laravel/laravel.git

It works for me.

The command you used looks more like it is only for the owner. The form
g...@github.com:laravel/laravel.git looks more like what I use when I'm
updating my own repositories, not cloning somebody else's repository.
On Aug 17, 2014 1:58 PM, Chinedu Iroanyah chinedudeora...@gmail.com
wrote:

  when i run this command
 git clone g...@github.com:laravel/laravel.git
 i keep getting this result

 Cloning into 'laravel'...
 Permission denied (publickey).
 fatal: Could not read from remote repository.

 Please make sure you have the correct access rights
 and the repository exists.

 pls can anyone help point me in the right direction? I am a newbe to both
 git and laravel, i am trying to practice what i saw in Laravel Application
 Development Cookbook

 --
 You received this message because you are subscribed to the Google Groups
 Git for human beings group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to git-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] issues with downloading project files from git

2014-08-17 Thread Dale R. Worley
 From: John McKown john.archie.mck...@gmail.com
 
 Try
 
 git clone https://github.com/laravel/laravel.git
 
 It works for me.
 
 The command you used looks more like it is only for the owner. The form
 g...@github.com:laravel/laravel.git looks more like what I use when I'm
 updating my own repositories, not cloning somebody else's repository.

Hmmm, yes.  Syntaxes like u...@host.com:path usually mean log in as
'user' onto host 'host.com' and then access the file identified by
'path'.

Dale

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.