[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/11: git: 'update-cached-checkout' avoids network access when unnecess
From: |
guix-commits |
Subject: |
02/11: git: 'update-cached-checkout' avoids network access when unnecessary. |
Date: |
Mon, 23 Sep 2019 05:08:32 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit a78dcb3d599cc84b347578940bb0fd44b1ad50b4
Author: Ludovic Courtès <address@hidden>
Date: Sat Sep 14 17:46:34 2019 +0200
git: 'update-cached-checkout' avoids network access when unnecessary.
* guix/git.scm (reference-available?): New procedure.
(update-cached-checkout): Avoid call to 'remote-fetch' when REPOSITORY
already contains REF.
---
guix/git.scm | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/guix/git.scm b/guix/git.scm
index de98fed..92a7353 100644
--- a/guix/git.scm
+++ b/guix/git.scm
@@ -220,6 +220,21 @@ dynamic extent of EXP."
(G_ "Support for submodules is missing; \
please upgrade Guile-Git.~%"))))
+(define (reference-available? repository ref)
+ "Return true if REF, a reference such as '(commit . \"cabba9e\"), is
+definitely available in REPOSITORY, false otherwise."
+ (match ref
+ (('commit . commit)
+ (catch 'git-error
+ (lambda ()
+ (->bool (commit-lookup repository (string->oid commit))))
+ (lambda (key error . rest)
+ (if (= GIT_ENOTFOUND (git-error-code error))
+ #f
+ (apply throw key error rest)))))
+ (_
+ #f)))
+
(define* (update-cached-checkout url
#:key
(ref '(branch . "master"))
@@ -254,7 +269,8 @@ When RECURSIVE? is true, check out submodules as well, if
any."
(repository-open cache-directory)
(clone* url cache-directory))))
;; Only fetch remote if it has not been cloned just before.
- (when cache-exists?
+ (when (and cache-exists?
+ (not (reference-available? repository ref)))
(remote-fetch (remote-lookup repository "origin")))
(when recursive?
(update-submodules repository #:log-port log-port))
- branch master updated (acedaec -> 90ca791), guix-commits, 2019/09/23
- 01/11: pull: '--news' shows the list of channels added or removed., guix-commits, 2019/09/23
- 02/11: git: 'update-cached-checkout' avoids network access when unnecessary.,
guix-commits <=
- 06/11: ui: Add 'current-message-language'., guix-commits, 2019/09/23
- 03/11: git: Add 'commit-difference'., guix-commits, 2019/09/23
- 05/11: channels: Allow news entries to refer to a tag., guix-commits, 2019/09/23
- 04/11: channels: Add support for a news file., guix-commits, 2019/09/23
- 08/11: pull: '-l' displays channel news., guix-commits, 2019/09/23
- 10/11: Add '.guix-channel' file., guix-commits, 2019/09/23
- 07/11: pull: Display channel news., guix-commits, 2019/09/23
- 09/11: pull: Display news titles directly upon 'pull'., guix-commits, 2019/09/23
- 11/11: etc: Add channel news file., guix-commits, 2019/09/23