git init <repo>
cd <repo>
git remote add -f origin <url>
This creates an empty repository with your remote, and fetches all objects but doesn't check them out. Then do:
git config core.sparseCheckout true
| # [🟨OPTIONAL] Uninstall old docker versions | |
| sudo apt-get remove docker docker-engine docker.io containerd runc | |
| # Refresh latest version | |
| sudo apt-get update | |
| # Install pre-req | |
| sudo apt-get install -y \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ | |
| gnupg \ |
git init <repo>
cd <repo>
git remote add -f origin <url>
This creates an empty repository with your remote, and fetches all objects but doesn't check them out. Then do:
git config core.sparseCheckout true