Warm tip: This article is reproduced from serverfault.com, please click

git-RPC失败;

(git - RPC failed; HTTP 400 curl 22 The requested URL returned error: 400 Bad Request)

发布于 2020-07-06 10:00:53

我想将我的代码从旧存储库推送到新存储库,因为我的旧存储库似乎因某种原因而损坏

出现以下错误:

Counting objects: 19815, done.
Compressing objects: 100% (5264/5264), done.
Writing objects: 100% (19815/19815), 44.91 MiB | 134.87 MiB/s, done.
Total 19815 (delta 14641), reused 19405 (delta 14283)
error: RPC failed; HTTP 400 curl 22 The requested URL returned error: 400 Bad Request
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date

我试过了,git config http.postBuffer 524288000但它什至没有帮助git push --force origingit push --all但是却收到相同的错误

Questioner
shubhangi singh
Viewed
0
Andrey Chinov 2020-12-29 05:41:27

我遇到了同样的错误。我有一项任务要从一台服务器移动到另一台服务器(从TFSAzure),所有存储库(一个除外)都可以使用过程轻松移动一个存储库在尝试进行PUSH时抛出了这样的错误。该存储库中大约有15个分支。我决定一次使用转移一个分支git push url://to/new/repository.git branch-to-move:new-branch-name当我将此选项应用于master分支时,我遇到了相同的错误。然后我转移了所有其他分支(它们没有问题)。之后,分支迁移顺利。