git clone で指定ブランチをクローンする方法

git clone で指定ブランチをクローンする方法

git clone で指定ブランチをクローンする方法

# masterブランチをクローン
$ git clone https://github.com/username/repositoryname.git

git cloneコマンドでリモートレポジトリをローカルにクローンできます。何も指定しないとmasterブランチがクローンされます。

ブランチを指定してクローンするには以下のように -b パラメータを使います。

# 指定ブランチをクローン
$ git clone https://github.com/username/repositoryname.git -b ブランチ名

例えばdevelopブランチをクローンするなら以下のようにします。

# developブランチをクローン
$ git clone https://github.com/username/repositoryname.git -b develop

メモ代わりに書いておきます。

以上。

Gitカテゴリの最新記事