赞
踩
git init
git remote add origin git@github.com:99Young99/Machine-learning.git (远程仓库地址)
git lfs
(一个仓库里面执行一次就好了)git lfs install
Git LFS
管理的文件类型,或者直接指定文件git lfs track "*.pdf" 或者 git lfs track "李航.pdf"
注: *.pdf
会搜索当下各文件中所有后缀为 pdf
的文件
如果想将整个文件夹通过通过 Git LFS 进行上传,可将整个文件夹打包为 .zip 文件,然后通过 git lfs track "*.zip"
.gitattributes
(配置文件,缺少它执行其他 git
操作可能会有问题,具体作用不详述)git add .gitattributes
PS: 最终上传完毕后会在文件夹看到:
git pull --rebase origin master
git add .
git commit -m “任意文字”
git push -u origin master
如果是 commit 提交过程中报错存在大文件,需要先撤销已提交的 commit
,再进行如上操作,如果是第一次 commit
就可以直接用。
# 撤销步骤
# 查看提交记录
$ git log
# 找到提交前的commit,重置
$ git reset xxxxx
如果是 git push 到 Gitee 上报错:LFS only supported repository in paid enterprise.
解决方法:
rm .git/hooks/pre-push
git push -u origin "master"
[2] error: GH001: Large files detected. You may want to try Git Large File Storage - https://git-lfs.git
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。