diff options
author | zimoun <zimon.toutoune@gmail.com> | 2021-11-18 01:20:23 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-17 17:29:34 +0100 |
commit | 28ffdc5cc815e981281e2aa67a81280666985f0f (patch) | |
tree | cd44db44037084ae5270d9fb9ff63c2ffc694ec6 /doc | |
parent | 05c962594c346da21f201be72caadfa19060cc9d (diff) | |
download | guix-28ffdc5cc815e981281e2aa67a81280666985f0f.tar.gz |
guix hash: Add git serializer.
* guix/scripts/hash.scm (git-hash): New procedure. (%options): Use it. * tests/guix-hash.sh: Test it. * doc/guix.texi: Update. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 7f579f81d4..31a23874b1 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -11758,7 +11758,7 @@ legacy alias for @var{type} sets to @code{nar}. @itemx -S Compute the hash on @var{file} using @var{type} serialization. -Supported types: @code{none} and @code{nar}. +Supported types: @code{none}, @code{nar} and @code{git}. When using @code{nar}, the hash is computed on an archive containing @var{file}, including its children if it is a directory. Some of the @@ -11769,6 +11769,8 @@ impact on the hash (@pxref{Invoking guix archive}). @c FIXME: Replace xref above with xref to an ``Archive'' section when @c it exists. +Using @code{git} serializes the file or directory as a Git tree. + @item --exclude-vcs @itemx -x When combined with @option{--recursive}, exclude version control system |