1. 程式人生 > >Git大文件上傳

Git大文件上傳

per store lfs tor sid 文件 通過 The false

git lft 提交時遇到錯誤:

Remote “origin” does not support the LFS locking API. Consider disabling it with

    git push -u origin master
    Remote "origin" does not support the LFS locking API. Consider disabling it with:
        $ git config lfs.https://github.com/garsonlab/lfs.locksverify false

解決方法直接按照上方提示,將LFS locking設置為false即可:

    git config lfs.https://github.com/garsonlab/lfs.locksverify false

解決之後,緊接著又會有另一個錯誤:

batch response: Git credentials for https://github.com/garsonlab/***.git not found:
解決方式:

git config --global credential.helper store

通過存儲認證的密碼和賬號才解決

Git大文件上傳