Git development
 help / color / mirror / Atom feed
* [PATCH] clone: accept DEPTH env var as fallback for --depth
@ 2026-06-13  1:39 h8d13 via GitGitGadget
  2026-06-13  4:08 ` Matt Hunter
  0 siblings, 1 reply; 4+ messages in thread
From: h8d13 via GitGitGadget @ 2026-06-13  1:39 UTC (permalink / raw)
  To: git; +Cc: h8d13, h8d13

From: h8d13 <hadean-eon-dev@proton.me>

When git clone is run by a tool the user does not control directly
(CI runners, package build scripts such as makepkg, or any wrapper
that spawns nested clones), there is no way to request a shallow
clone: --depth only exists as a command-line option on the process
that invokes git clone, and unlike url.*.insteadOf there is no
configuration key that could be injected via GIT_CONFIG_* to achieve
the same effect.

Teach git clone to read a DEPTH environment variable when --depth is
not given on the command line. Since environment variables propagate
to child processes, exporting DEPTH=1 once makes every nested clone
underneath shallow, which is useful in CI pipelines and recursive
build tools. An explicit --depth on the command line still takes
precedence, and the value goes through the existing validation, so a
non-positive DEPTH dies with the same error as a non-positive
--depth.

Signed-off-by: h8d13 <hadean-eon-dev@proton.me>
---
    clone: accept DEPTH env var as fallback for --depth

Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-2333%2Fh8d13%2Fdepth-env-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-2333/h8d13/depth-env-v1
Pull-Request: https://github.com/git/git/pull/2333

 builtin/clone.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/builtin/clone.c b/builtin/clone.c
index d60d1b60bc..549506f672 100644
--- a/builtin/clone.c
+++ b/builtin/clone.c
@@ -1022,6 +1022,12 @@ int cmd_clone(int argc,
 		usage_msg_opt(_("You must specify a repository to clone."),
 			builtin_clone_usage, builtin_clone_options);
 
+	if (!option_depth) {
+		const char *env_depth = getenv("DEPTH");
+		if (env_depth && *env_depth)
+			option_depth = xstrdup(env_depth);
+	}
+
 	if (option_depth || option_since || option_not.nr)
 		deepen = 1;
 	if (option_single_branch == -1)

base-commit: 3e65291872de10c3f0bf05ea8c24187e7a71ebf0
-- 
gitgitgadget

^ permalink raw reply related	[flat|nested] 4+ messages in thread
* Re: [PATCH] clone: accept DEPTH env var as fallback for --depth
@ 2026-06-13 17:43 Hadrien Loge
  0 siblings, 0 replies; 4+ messages in thread
From: Hadrien Loge @ 2026-06-13 17:43 UTC (permalink / raw)
  To: gitster; +Cc: git, gitgitgadget, hadean-eon-dev, m

Well mainly I'm asking this for packaging (Arch/Alpine/Etc)
These all follow similar conventions (PKGBUILD/APKBUILD).

But in nested flows the ENV var seems like the proper solution.

Mainly I gave this example on github:

    git clone --depth 1 url dest
    cd dest
    bash run.sh
    here run.sh has its own clone deps (perhaps even multiple)
    --depth 1 is now lost

And only ENV vars that I can think of properly propagate for CI
flows/clean chroot envirs.
Thank you for considering the solution. It would be very useful
for speeding up packaging.
Even on 5k commits history it's 900kb vs 17mb.

I have also reworked the commit to include tests/docs.
and rename to GIT_CLONE_DEPTH

Kind regards,
Hade

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-06-13 17:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-13  1:39 [PATCH] clone: accept DEPTH env var as fallback for --depth h8d13 via GitGitGadget
2026-06-13  4:08 ` Matt Hunter
2026-06-13 15:20   ` Junio C Hamano
  -- strict thread matches above, loose matches on Subject: below --
2026-06-13 17:43 Hadrien Loge

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox