git提交失敗的解決辦法
1 提交後提示
fatal: recursion detected in die handler
問題緣由:
問題緣由是http.postBuffer默認上限爲1M所致。在git的配置裏將http.postBuffer變量改大一些便可,好比將上限設爲500M:
git config --global http.postBuffer 524288000
在哪裏執行以上命令呢?
打開git bash命令行工具。
注意要加上--global。網上不少資料都沒加這個參數。不加執行的話會報如下錯誤的: git
error:could not lock config file .git/config: no such file or directory.bash
右鍵TortoiseGit--settings--Git--Edit systemwide gitconfig--把postBuffer的值修改成524288000app
報錯信息ssh
git.exe clone --progress -v "https://git.duapp.com/appiddfged879rf" "F:\bae\yelp"
Cloning into 'F:\bae\yelp'...
fatal: unable to access 'https://git.duapp.com/appiddfged879rf/': SSL certificate problem: unable to get local issuer certificateide
最簡單的解決方法是執行下面的命令,而後從新執行 git clone 命令:
git config --global http.sslVerify false工具