summaryrefslogtreecommitdiffstats
path: root/subsurface-core/git-access.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-12-27 08:31:08 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-12-27 10:06:33 -0800
commit83bd46cf799bcacf9ce259571b911b86592564d3 (patch)
tree94c7750fb451f3e688816a056ddd79f92d700575 /subsurface-core/git-access.c
parent3a670f8c3b51456fdf38772cc2fee50dd382fb45 (diff)
downloadsubsurface-83bd46cf799bcacf9ce259571b911b86592564d3.tar.gz
Add option to not check the remote when loading from git storage
This way we can first load from cache and then update from the network in the background. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-core/git-access.c')
-rw-r--r--subsurface-core/git-access.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/subsurface-core/git-access.c b/subsurface-core/git-access.c
index 79e52b5a4..81952c89c 100644
--- a/subsurface-core/git-access.c
+++ b/subsurface-core/git-access.c
@@ -462,6 +462,11 @@ int sync_with_remote(git_repository *repo, const char *remote, const char *branc
char *proxy_string;
git_config *conf;
+ if (prefs.git_local_only) {
+ if (verbose)
+ fprintf(stderr, "don't sync with remote - read from cache only\n");
+ return 0;
+ }
if (verbose)
fprintf(stderr, "sync with remote %s[%s]\n", remote, branch);