From 4588f5c186209137c4c077f5bf2dbd8d91cbec39 Mon Sep 17 00:00:00 2001 From: Aayush <73094905+aAYUSHkujur@users.noreply.github.com> Date: Fri, 26 May 2023 15:55:15 +0530 Subject: [PATCH] Update error.json (#168) * Update error.json * Update error.json --- src/data/error.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/data/error.json b/src/data/error.json index 9d6963c..d3585ff 100644 --- a/src/data/error.json +++ b/src/data/error.json @@ -263,6 +263,12 @@ "title":"error: RPC failed; curl transfer closed with outstanding read data remaining", "description":"typically occurs when Git is unable to complete a network request, often due to a slow or unstable connection or Small HTTPS Buffer on Client machine", "solutions":" increasing the Git buffer size and using a different network connection are two possible solutions that may help resolve the issue < git config http.postBuffer 524288000 < git config --global http.maxRequestBuffer 524288000 < git config --global core.compression 0" + }, + { + "type": "commit", + "title": "Git nothing to commit", + "description": "The Git command line informs us that our local repository contains one more commit than our remote repository.", + "solutions": "git push" } ] }