summaryrefslogtreecommitdiffstats
path: root/subsurface-core
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
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')
-rw-r--r--subsurface-core/git-access.c5
-rw-r--r--subsurface-core/pref.h1
2 files changed, 6 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);
diff --git a/subsurface-core/pref.h b/subsurface-core/pref.h
index 348dcfbf2..1e58a6ace 100644
--- a/subsurface-core/pref.h
+++ b/subsurface-core/pref.h
@@ -125,6 +125,7 @@ struct preferences {
short conservatism_level;
int time_threshold;
int distance_threshold;
+ bool git_local_only;
};
enum unit_system_values {
METRIC,