Complete the command to start a partial clone with filter blob:none.
git clone --filter [1] https://github.com/example/repo.gitThe --filter=blob:none option tells Git to exclude blobs (file contents) during clone, reducing download size.
Complete the command to fetch missing blobs after a partial clone.
git fetch origin [1]The --no-filter option fetches all objects including missing blobs to complete the clone.
Fix the error in the partial clone command to correctly specify the filter option.
git clone --filter [1] https://github.com/example/repo.gitThe correct syntax is --filter=blob:none. The blank replaces the value after --filter=.
Fill both blanks to create a partial clone and fetch missing blobs later.
git clone --filter [1] https://github.com/example/repo.git && git fetch origin [2]
Use blob:none to exclude blobs during clone, then --no-filter to fetch missing blobs.
Fill all three blanks to create a partial clone, fetch missing blobs, and check the clone status.
git clone --filter [1] https://github.com/example/repo.git && git fetch origin [2] && git [3]
Clone with blob:none, fetch missing blobs with --no-filter, then check status with git status.