From b413fabce703a2bebfac0e9d6dd6af0a9e457928 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sat, 13 Jun 2015 18:24:27 -0700 Subject: [PATCH] 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 --- git-access.c | 2 -- 1 file changed, 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; }