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他のさまざまなファイルやフォルダーと一緒に名前が付けられた1つのフォルダーを含むディレクトリがあります。ディレクトリを除くすべてのファイルとすべてのフォルダを削除したい.git。
.git
いずれかのフォルダーに という名前のサブフォルダーが含まれている場合は、.gitそれらも削除したいことに注意してください。ルート git リポジトリのみを保持する必要があります。
これは次のように簡単です:
shopt -s extglob dotglob rm -rf !(.git)
http://mywiki.wooledge.org/globを参照してください。