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.
一个简单的问题:
如何停止跟踪整个存储库并安全地删除所有本地文件? 我有一个远程存储库,在几次提交后,我决定不理会它。但我也不希望它堵塞我的磁盘空间,所以我想把它从我的本地磁盘上擦掉。
例如,如果回购是这样的
git clone git://github.com/antirez/redis.git
您只需删除文件夹即可删除本地文件
rm -r redis
这将使远程文件保持不变。