Cloning Remote Depository

I am stuck on the first question on GIt Cloning:

I thought at first I was supposed to log into the GIT portal like the lecture showed, but the credentials do not work. I followed the hint and I keep on getting a fatal error: Please help!

max $ git clone http://git.example.com/sarah/story-blog.git
Cloning into 'story-blog'...
fatal: repository 'http://git.example.com/sarah/story-blog.git/' not found

First max needs to download the current code (stories) uploaded by Sarah in remote repository. As user Max , clone the remote repo to his home directory - /home/max

Target repo web URL : http://git.example.com/sarah/story-blog

You can also find this URL from UI

Hi @emmy813
Try resetting the lab. It is working for me

max $ git clone http://git.example.com/sarah/story-blog
Cloning into 'story-blog'...
remote: Enumerating objects: 14, done.
remote: Counting objects: 100% (14/14), done.
remote: Compressing objects: 100% (12/12), done.
remote: Total 14 (delta 4), reused 0 (delta 0), pack-reused 0
Receiving objects: 100% (14/14), done.
Resolving deltas: 100% (4/4), done.
max $ ls -l  story-blog/
total 8
-rw-r--r--    1 max      max            792 Jul 10 09:30 frogs-and-ox.txt
-rw-r--r--    1 max      max           1086 Jul 10 09:30 lion-and-mouse.txt
max $ 

Thank you so much! I don’t know why it wasn’t working. It is now. :slight_smile: