cdimascio / nationalparks_conversation

Chatbots and Watson: Let’s talk about national parks: course source code
https://developer.ibm.com/courses/all-courses/chatbots-and-watson-lets-talk-about-national-parks/
46 stars 74 forks source link

git clone -b project-skeleton not working #10

Open hasprit opened 6 years ago

hasprit commented 6 years ago

I am following the tutorial in the lab6 of the ibm courses e-learning https://developer.ibm.com/courses/all/chatbots-watson-lets-talk-national-parks

unfortunately i'm no table to branch with git the project skeleton using the command

git clone –b project-skeleton https://github.com/cdimascio/nationalparks_conversation

the command is not working in different combination

can you help

hasprit commented 6 years ago

@cdimascio any help on this ?

thx in advance

Confidenceiskey commented 6 years ago

Hey @hasprit,

Try adding .git to the end of the url. So...

git clone -b project-skeleton https://github.com/cdimascio/nationalparks_conversation.git

Note that you will be cloning both the 'master' and 'project-skeleton' directories. So you'll need to cd nationalparks_conversation and then do the git checkout project-skeleton

PS - Make Stack Overflow your friend! In 90% of cases when I'm stuck, Stack Overflow already has a solution/answer...just have to find it. Also, have a read of this page

hasprit commented 6 years ago

Hello @Confidenceiskey

Thanks a lot for your help it dit the job indeed adding the .git extension , damn copy paste :) it drove me nuts

thanks again :)

cdimascio commented 6 years ago

Thanks for the help @Confidenceiskey