REM .gitディレクトリのみがcloneされる
git clone --sparse --filter=blob:none --no-checkout [リポジトリURL]
REM さらにシャローコピーも(最速clone)
git clone --depth=1 --sparse --filter=blob:none --no-checkout [リポジトリURL]
REM チェックアウト対象のセット(それまでの内容を破棄して上書き)
git sparse-checkout set [ディレクトリ名]
REM チェックアウト対象の追加(それまでの内容を残して追加)
git sparse-checkout add [ディレクトリ名]
REM チェックアウト対象の確認
git sparse-checkout list
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme