summaryrefslogtreecommitdiffstats
path: root/git-access.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-13 18:24:27 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-13 18:24:27 -0700
commitb413fabce703a2bebfac0e9d6dd6af0a9e457928 (patch)
treee00ab30cdf7fc2f0ccf6b6594c76bd64dd44528f /git-access.c
parent3d62f89bce967d43de0d6fb8ba5156371b4f293b (diff)
downloadsubsurface-b413fabce703a2bebfac0e9d6dd6af0a9e457928.tar.gz
Cloud storage: don't print confusing warning
This is no longer correct and is actively misleading. We now correctly sync with the remote. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'git-access.c')
-rw-r--r--git-access.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/git-access.c b/git-access.c
index 061f8ec27..85c6f8d3c 100644
--- a/git-access.c
+++ b/git-access.c
@@ -144,8 +144,6 @@ static int update_remote(git_repository *repo, git_remote *origin, git_reference
if (git_remote_push(origin, &refspec, &opts))
return report_error("Unable to update remote with current local cache state (%s)", giterr_last()->message);
- // Not actually an error, just informational
- report_error("Local cache more recent than remote");
return 0;
}