Basically, on one PC I created a branch, let's say new_branch
and made some changes there. Now I want to get the whole repository from that branch on a different PC.
The problem is that when I'm using:
git checkout new_branch
I get the message that the new_branch does not exist. And by default I'm on master.
How can I do that?