「Git入門」git cloneコマンドの使い方
説明
git cloneでリモートリポジトリをローカルに複製します。
オプション
-b ブランチ名を指定
–mirror ミラーリポジトリ作成
–depth 履歴数
使用例
1.リモートリポジトリから現在フォルダへクローン
$ git clone http://xxx/sample.git
2.リモートリポジトリから指定場所へクローン
$ git clone http://xxx/sample.git d:\git\arkgame
3.指定ブランチを現在フォルダへクローン
$ git clone -b 2020Dev01 http://xxx/sample.git
4.リモートリポジトリのミラー作成
$ git clone –mirror http://xxx/sample.git