diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-02-07 15:24:28 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-02-10 23:31:58 +0100 |
commit | a063bac618c36658dbb1dbf4a602172cae22975f (patch) | |
tree | c6c6e03879f7bd8e4fed64adf61ef25b5439705c /guix | |
parent | 8a0dd289c5b201ebfdd5465d412230bb81110e4c (diff) | |
download | patches-a063bac618c36658dbb1dbf4a602172cae22975f.tar patches-a063bac618c36658dbb1dbf4a602172cae22975f.tar.gz |
git: Add missing exports for <git-checkout>.
* guix/git.scm (<git-checkout>): Export 'git-checkout-commit' and
'git-checkout-recursive?'.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/git.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix/git.scm b/guix/git.scm index ca5dbfba1c..b1ce3ea451 100644 --- a/guix/git.scm +++ b/guix/git.scm @@ -46,7 +46,9 @@ git-checkout git-checkout? git-checkout-url - git-checkout-branch)) + git-checkout-branch + git-checkout-commit + git-checkout-recursive?)) (define %repository-cache-directory (make-parameter (string-append (cache-directory #:ensure? #f) |