mirror of
https://github.com/NixOS/nix
synced 2025-06-28 22:01:15 +02:00
fetchGit: document shallow
argument
This commit is contained in:
parent
49c4a37efc
commit
e8109cf405
2 changed files with 5 additions and 1 deletions
|
@ -574,7 +574,7 @@ struct GitInputScheme : InputScheme
|
|||
bool isShallow = chomp(runProgram("git", true, { "-C", repoDir, "--git-dir", gitDir, "rev-parse", "--is-shallow-repository" })) == "true";
|
||||
|
||||
if (isShallow && !shallow)
|
||||
throw Error("'%s' is a shallow Git repository, but a non-shallow repository is needed", actualUrl);
|
||||
throw Error("'%s' is a shallow Git repository, but shallow repositories are only allowed when `shallow = true;` is specified.", actualUrl);
|
||||
|
||||
// FIXME: check whether rev is an ancestor of ref.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue