Reputation: 29326
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
Reputation: 485
Did you remember to switch branches from master to your remote branch?
Upvotes: 1