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>
This commit is contained in:
Dirk Hohndel 2015-06-13 18:24:27 -07:00
parent 3d62f89bce
commit b413fabce7

View file

@ -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;
}