将 React 应用程序部署到 GitHub 页面失败,并出现错误 ProcessError: error: RPC failed

问题描述 投票:0回答:1

将 React 应用程序部署到 GitHub 页面失败,并出现错误 ProcessError: error: RPC failed。详细错误如下,

ProcessError: error: RPC failed; HTTP 400 curl 22 The requested URL returned error: 400
send-pack: unexpected disconnect while reading sideband packet
fatal: the remote end hung up unexpectedly
Everything up-to-date

    at ChildProcess.<anonymous> (/Users/tinujos/Learning/tinujosk.github.io/react-app/node_modules/gh-pages/lib/git.js:42:16)
    at ChildProcess.emit (node:events:514:28)
    at maybeClose (node:internal/child_process:1105:16)
    at ChildProcess._handle.onexit (node:internal/child_process:305:5)

当我执行 npm run deploy 并调用 gh-pages -d build 时,会发生这种情况。

有几件事需要记住,

  1. 我可以毫无问题地将代码推送到主分支,因此这不是远程存储库 URL 的问题。
  2. 应用程序不大,是一个单页作品集网站。
reactjs github npm github-pages
1个回答
0
投票

git config --global http.postBuffer 157286400
git config --global http.maxRequestBuffer 1048576000

我尝试过这个并且有效。

© www.soinside.com 2019 - 2024. All rights reserved.