我做了类似
的事情git rm db.sqlite3
git commit -am "SQLite deleted"
git push origin master
现在在Bitbucket的Web界面中,我可以看到db.sqlite3。 我试试
git rm --cached db.sqlite3
得到
fatal: pathspec 'db.sqlite3' did not match any files
我能尽我所能想到的是文件现在没有跟踪。
你能帮我把它从远程存储库中删除吗?
答案 0 :(得分:0)
您运行的命令都是正确的。也许你在看
从您的评论中看,问题似乎已得到解决。