Avoid cloning entire repos

This commit is contained in:
BtbN 2020-09-05 22:34:23 +02:00
parent cf486fe562
commit b4bbce3020
20 changed files with 29 additions and 36 deletions

10
images/base/git-mini-clone.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/bash
set -xe
REPO="$1"
REF="$2"
DEST="$3"
git init "$DEST"
git -C "$DEST" remote add origin "$REPO"
git -C "$DEST" fetch --depth=1 origin "$REF"
git -C "$DEST" config advice.detachedHead false
git -C "$DEST" checkout FETCH_HEAD