HugoLhuillier / IntroProg2018

Course taught in the MSc in Economics first year, Sciences Po, Spring 2018.
5 stars 26 forks source link

Can't open README #6

Closed YaelinHam closed 6 years ago

YaelinHam commented 6 years ago

Dear @HugoLhuillier ,

  1. I cloned the repo (easy)

git clone https://github.com/git-game/git-game.git

  1. But then I can not open the README File ! :'(
cat README.md
No such file or directory
  1. I also deleted my first attempt as follow (because I thought that I made a bug).
rm -rf https://github.com/git-game/git-game.git
git clone https://github.com/git-game/git-game.git
  1. I went trought many forums, and one of them was talking about this download: https://git-scm.com/download/mac

Can it explain why is it not working ?

Thanks for your answer.

Yaelin

HugoLhuillier commented 6 years ago

Did you find out eventually? I believe it's because you were trying to read the README.md file from the wrong directory. If you: clone, move into the directory, and then cat, it should work. Like

git clone https://github.com/git-game/git-game.git
cd git-game 
cat README.md