react-bacon-todomvc icon indicating copy to clipboard operation
react-bacon-todomvc copied to clipboard

The documentation seems to have a small error in it

Open RyanAtViceSoftware opened this issue 9 years ago • 3 comments

Hi,

I was trying to clone and got the error shown below. It seems that the readme doesn't have the correct repo url as it's missing the https:// or maybe my system isn't setup to support the syntax your using locally. Either way I probably won't be the only person who gets the err.

Ryans-MacBook-Air:Code ryanvice$ git clone [email protected]:milankinen/react-bacon-todomvc.git
Cloning into 'react-bacon-todomvc'...
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
Ryans-MacBook-Air:Code ryanvice$ git clone https://github.com/milankinen/react-bacon-todomvc.git
Cloning into 'react-bacon-todomvc'...
remote: Counting objects: 101, done.
remote: Total 101 (delta 0), reused 0 (delta 0), pack-reused 101
Receiving objects: 100% (101/101), 458.34 KiB | 0 bytes/s, done.
Resolving deltas: 100% (29/29), done.
Checking connectivity... done.
Ryans-MacBook-Air:Code ryanvice$ 

RyanAtViceSoftware avatar Jan 18 '16 13:01 RyanAtViceSoftware

Hi,

You just need to set your RSA key to Github account. If you want to clone anonymously you have to use HTTP(s) instead

milankinen avatar Jan 18 '16 23:01 milankinen

I changed the repository url to the README

milankinen avatar Jan 18 '16 23:01 milankinen

Thanks @milankinen I figured there was something configuration wise that I was missing but also figured less configuration to get started might be desirable. Hopefully not being pedantic as I'm genuinely trying to help but here are two more small things.

On that note. It seems you also need xcode installed to use NPM start which should probably be at least called out.

Also even though it's really obvious you'd technically have to have a cd cd react-bacon-todomvc/ after cloning. It's pretty common for that step to get listed.

RyanAtViceSoftware avatar Jan 19 '16 12:01 RyanAtViceSoftware