删除 git-lfs
Removing git-lfs
remove/unistall git-lfs 的完整 remove/unistall 是怎么做的?我做了 git lfs uninstall
返回了以下两行:
Hooks for this repository have been removed
Global Git LFS configuration has been removed
但 lfs
文件夹仍在 .git
下,当我这样做时 git status
文件在该文件夹中进进出出 (.git/lfs/tmp
)。在我看来 git-lfs
可能还没有被删除。
可执行文件也已从我的 windows10 机器中 control panel
下的 uninstall or change a program
window 中卸载。
如git-lfs/git-lfs issue 959中所述,您现在可以删除该文件夹。
在卸载 lfs 之前,git lfs prune
将有助于将内容保持在合理的大小。但是现在,不再需要该文件夹了。
作为RYO ENG Lian Hu points out , ans explained in "
You will not be allowed to push files larger than 100MB.
For more details check this link: GIT - working with large files
You can split up your zip file into 2 files of sizes less than 100MB and push the same.
remove/unistall git-lfs 的完整 remove/unistall 是怎么做的?我做了 git lfs uninstall
返回了以下两行:
Hooks for this repository have been removed
Global Git LFS configuration has been removed
但 lfs
文件夹仍在 .git
下,当我这样做时 git status
文件在该文件夹中进进出出 (.git/lfs/tmp
)。在我看来 git-lfs
可能还没有被删除。
可执行文件也已从我的 windows10 机器中 control panel
下的 uninstall or change a program
window 中卸载。
如git-lfs/git-lfs issue 959中所述,您现在可以删除该文件夹。
在卸载 lfs 之前,git lfs prune
将有助于将内容保持在合理的大小。但是现在,不再需要该文件夹了。
作为RYO ENG Lian Hu points out
You will not be allowed to push files larger than 100MB.
For more details check this link: GIT - working with large filesYou can split up your zip file into 2 files of sizes less than 100MB and push the same.