0
I do the command to clone the code that’s in Github but Git only clones the ". git" and ". gitignore folder".
Here is my repository:
The project:
(If I’m putting up too many pictures, excuse me... I’m new here, I’m learning rsrs...)
And then I started Git in my Eclipse project folder, as shown in the image below:
And you see I’ve already done the cloning:
But note that he does not clone the rest of the data, but only the two folders I mentioned... What I may have done wrong?
I appreciate all the help you can give...
Have you tried the option
git clone -b master https://github.com/VictorHSM24/aula1-github
– Augusto Vasques
Utilize
git branch --all
to list all branches of the project andgit switch <branch-name>
to change between them.– Valdeir Psr