Skip to content

Commit

Permalink
Merge pull request #166 from TheLoneAlchemist/TheLoneAlchemist
Browse files Browse the repository at this point in the history
Add a new error & solution
  • Loading branch information
devvsakib authored Apr 14, 2023
2 parents 403ac0e + e0ff19f commit fc63404
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/data/error.json
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,12 @@
"title": "How to check status of git branch",
"description": "To see all the changes since last commit. It shows all files added, modified, ready to be commited and kept untracked.",
"solutions": "git status"
},
{
"type":"cmd",
"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"
}
]
}

1 comment on commit fc63404

@vercel
Copy link

@vercel vercel bot commented on fc63404 Apr 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.