git lfs uninstall
touch **/*
git commit -a
This will uninstall LFS support, touch every single file (so that git recognises that is has changed) then commit them all. If you like you could be more specific (ie, **/*.png for example). Note that using ** requires extended glob support enabled (shopt -s globstar on bash)
这篇博客介绍了如何通过运行`git lfs uninstall`来卸载Git LFS支持,然后使用`touch *`命令触碰所有文件以标记它们为已更改,并使用`git commit -a`将这些更改全部提交。你可以针对特定文件类型进行更精确的操作,例如只针对.png文件。注意,使用`**`通配符可能需要启用扩展glob支持。

524

被折叠的 条评论
为什么被折叠?



