Shallow fetch in workflows/autobuild.sh
#170
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hello,
While building images the automated script is fetching whole repositories instead of shallow cloning them which utilizes more free space and makes building slower.
Would it be possible to add
--depth 1parameter togit clone <URL>and--recursive --depth 1togit submodule update --init?