Github Push Error: RPC failed; result=22, HTTP code = 413

前端 未结 17 910
迷失自我
迷失自我 2020-11-28 02:27

stupid issue with Github going on right now. I have a decent amount of changes (~120MB in size), when I attempt to push, this is what happens:

error: RPC fai         


        
17条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-28 03:11

    Need to change remote url to ssh or https

    git remote set-url origin git@github.com:laravel/laravel.git
    

    or

    git remote set-url origin https://github.com/laravel/laravel.git
    

    Hope, this will help :)

提交回复
热议问题