git clone ワザ
最新のコミットだけ取得する
$ git clone --depth 1 <GIT_URL>
$ git clone -d 1 <GIT_URL>
ブランチを指定する
$ git clone -b <BRANCH_NAME> <GIT_URL>
$ git clone --branch <BRANCH_NAME> <GIT_URL>