Git Error; RPC failed; result=22, HTTP code = 401

后端 未结 1 2015
悲哀的现实
悲哀的现实 2021-02-19 13:27

I am trying to get some subversion code - and history into TFS.

Going via GIT seemed like a quick win and following the steps in the below url:

http://ww         


        
相关标签:
1条回答
  • 2021-02-19 13:36

    After a bit searching I found this Git - error: RPC failed; result=22, HTTP code = 401 fatal: The remote end hung up unexpectedly, however you already tried(according your comment). According to atlassian document(https://confluence.atlassian.com/display/STASHKB/Git+Push+Fails+-+fatal%3A+The+remote+end+hung+up+unexpectedly) the reason error you got is size of postBuffer and you need to increase it.

    Increase the Git buffer size to the largest individual file size of your repo:

    git config --global http.postBuffer 157286400
    
    0 讨论(0)
提交回复
热议问题