情况是这样的。有一个大文件140M,本地的git服务器上传限制改掉了,所以能上传。当我将它上传到网络上的git服务器,像git.oschina.net这样的,文件大小有限制,只有100M,于是就无法push了。于是我就想删除,可是没用。尝试过的办法:
git rm --cached filename 没用 直接删除 没用
非常感谢。
业精于勤,荒于嬉;行成于思,毁于随。
日经
How can I delete a file from git repo?
Remove a file from a Git repository without deleting it from the local filesystem
git rm --cached not working
看你的说明,你是不是只在你本地执行到git commit -m '大文件140M'这一步,然后想删除这个大文件。如果你直接执行git rm 大文件不行的话,你可以在你本地的仓库里面直接右键大文件删除也可以,你试试看
git commit -m '大文件140M'
git rm 大文件
你不能直接删除远程仓库的东西, 先删除本地的,commit一下,再push到远程仓库
git rm largefile git commit -m "delete large file" git push origin master
日经
How can I delete a file from git repo?
Remove a file from a Git repository without deleting it from the local filesystem
git rm --cached not working
看你的说明,你是不是只在你本地执行到
git commit -m '大文件140M'
这一步,然后想删除这个大文件。如果你直接执行git rm 大文件
不行的话,你可以在你本地的仓库里面直接右键大文件删除也可以,你试试看你不能直接删除远程仓库的东西, 先删除本地的,commit一下,再push到远程仓库