1. Update your local meta-data using the following command:
git fetch --all
2. Have a look at your remote and local branches using the following command:
git branch -a
3. Switch to the target branch, the one you want to link with the remote branch:
git checkout <RemoteBranchName>
4. Now you can link your local branch to a remote branch using the following command:
git branch --set-upstream-to <PathOfRemoteBranch>
You can get the path using the following command:
git branch