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 に相当するものを探していますhg status -c:
hg status -c
-c --clean 変更のないファイルのみを表示
Callinggit statusは、デフォルトですべての「ダーティ」ファイル (つまり、変更のあるファイル) と追跡されていないファイルをリストします。これは問題ありません。
git status
しかし、補数を表示する必要がある場合があります-変更のないすべての(追跡された)ファイル。
gitでこれを達成するにはどうすればよいですか?
これでうまくいくはずです:
$ git ls-files -m > /dev/shm/exclude && git ls-files | grep -v -x -f /dev/shm/exclude
後で一時ファイルを削除することを忘れないでください。