新規にbranchを切って、それをremoteのリポジトリにpushしたとします。
別のPCでremoteにある、新しいbranchをpullしてくる方法です。
まずはremoteの新規リポジトリをpullする用のbranchを作ります。
新規branch作成
git branch new_branch_name origin/new_branch_name
次に新規branchにcheckoutしてremoteのbranchをpullします。
pull
git checkout new_branch_name
git pull origin new_branch_name
以下のようなエラーが出る場合はリモートの確認
error
fatal: Cannot update paths and switch to branch 'new_branch_name' at the same time.
Did you intend to checkout 'origin/new_branch_name' which can not be resolved as commit?
リモートのブランチのリストを確認
リモートの確認
git branch -r
branch 表示されない場合は更新
更新する
git fetch --prune
これで、リモートからブランチを作成可能。