git lft 提交时遇到错误:
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
解决之后,紧接着又会有另一个错误:
git config --global credential.helper store
通过存储认证的密码和账号才解决
原文:https://www.cnblogs.com/garsonlab/p/10458172.html