Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何完全删除使用 init 创建的 git 存储库?
我在 git 上有一个测试存储库,我想使用命令行删除它。我发现 git rm <file> 删除了存储库中的文件,而不是存储库本身。任何人都可以在这里提供帮助吗?
git rm <file>
对于本地仓库,运行
rm -r .git
你不能通过命令行远程删除一个仓库到 github。
尝试
从存储库的根目录。