Doug Smith
Doug Smith

Reputation: 29326

Trying to pull files into my local branch from a remote repo, but not all files seem to be getting pulled

I created a remote from the local repo I want to pull from. I then fetch it, and made a branch from it with git checkout -b test *remote-name*/*remote-branch* so I now have it as a branch that I'm in.

But for whatever reason, it's missing some script files it has on the github page. What did I do wrong?

Now that I'm in that branch I then did git pull *remote-name* *remote-branch* and it still doesn't have the files I want.

Upvotes: 0

Views: 44

Answers (1)

Alice
Alice

Reputation: 485

Did you remember to switch branches from master to your remote branch?

Upvotes: 1

Related Questions