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 init并且git add .在我的主目录上,我认为这减慢了每个操作,因为目录太大了。如何撤消git init主目录?
git init
git add .
您可以rm -rf $HOME/.git删除 git 存储的所有版本控制信息,这会撤消git init所做的一切。
rm -rf $HOME/.git
但我非常怀疑跑步git init会减慢任何速度。