Answer the question
In order to leave comments, you need to log in
Why do not all files arrive with git clone, but all with git pull?
There is a project on bitbucket, there is a dev branch, there is also a folder with files in the repository: file1, file2, file2. With git pull origin dev, all files arrive in my project: file1, file2, file3.
With git clone origin, only file1 arrives in my project.
What to do where to look?
Thanks in advance
Answer the question
In order to leave comments, you need to log in
Are the files in a branch? Maybe it's worth git checkout after git clone?
I can assume that after git clone you have the active branch master in which there are no all files. As already suggested, apparently you need to do git checkout dev after git clone.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question