Help need (git installation )

Hello, I’m a beginner in the world of development.
I have to create a GIT folder on my Mac, then clone the repository…

I have to run this order, but I think I do mistake somewhere…

Need your help guys…

johndoe ~
$ cd Documents/Fichiers/Git/PremierProjet
johndoe ~/Documents/Fichiers/Git/PremierProjet
$ git init
Initialized empty Git repository in c:/users/JohnDoe/Documents/Fichiers/Git/PremierProjet/

until this point there seems nothing wrong, you have created an empty git folder, and now you need to clone the repository you want to work on

follow the instructions after git init, and you should be on track

2 Likes

Now you need to do
git clone url-of-the-repo-to-clone

1 Like

Thank you very much!!!