git リモートリポジトリのブランチを持ってきたい
リモートリポジトリからブランチをチェックアウトする場合はgit checkout <remote-branch-name> とする。正確に指定する場合は git checkout -b <local-branch-name> <remote>/<remote-branch-name> とする。
git
Linux