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/.gitgitによって保存されたすべてのバージョン管理情報を削除するだけで、実行した内容がすべて元に戻されgit initます。
rm -rf $HOME/.git
git initしかし、私は実行が何かを遅くする可能性があることを非常に疑っています。