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コマンドウィンドウでこれに代わるコマンドラインを知っている人はいますか?
del *.orig /s
(したがって、拡張子が .orig のすべてのファイルを再帰的に削除します)
Windowsで実行しているように見えますか?git bash を使用している場合は、次のことができます。
find -name *.orig | xargs rm
これを達成するために xargs を使用する必要はありません...
find . -name *.orig -exec git rm -r --cached {} \;