做网站还用注册商标吗sem竞价推广托管
- github上传大文件怎么都上传不上去,查了下原来是要用
git lfs
,这里做个简单的记录 - 1、在当前仓库目录下命令执行:
git lfs install
- 2、选择您希望Git LFS管理的文件类型(或直接编辑.gitattributes)。您可以随时配置其他文件扩展名。这一步成功后会生成一个gitattributes文件:
git lfs track “zookeeper.pdf”
这里的zookeeper.pdf就是要上传的文件。 - 3、添加并提交 gitattributes文件:
git add .gitattributes
- 4、然后再添加大文件到本地缓存区
git add zookeeper.pdf
git commit -m "first version"
git push
-
大文件上传较慢需要耐心等待下。
-
最后总结下提交过程中可能遇到的错误:
-
1、
$ git pushUsername for 'https://github.com': 1030907690@qq.comRemote "origin" does not support the LFS locking API. Consider disabling it with:$ git config lfs.https://github.com/1030907690/big-file.git/info/lfs.locksverify falseGit credentials for https://github.com/1030907690/big-file.git not found.error: failed to push some refs to 'https://github.com/1030907690/big-file.git'
解决方案:git config lfs.https://github.com/1030907690/big-file.git/info/lfs.locksverify false
,注意这个仓库地址要根据它报错来,要改成自己的仓库地址
。
- 2、
$ git pushUsername for 'https://github.com': 1030907690@qq.comGit LFS: (0 of 1 files) 0 B / 119.97 MBbatch response: Git credentials for https://github.com/1030907690/big-file.git not found.error: failed to push some refs to 'https://github.com/1030907690/big-file.git'
解决方案:保存密码 git config --global credential.helper store