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のアルファベット順に表示したいと思います。
これどうやってするの?
git ls-files追跡されたすべてのファイルが一覧表示され、要求どおりに順序がアルファベット順になっているようです。
git ls-files
sortコマンドを使用できます。
git ls-files | sort -d
-dオプションは、アルファベット順にソートされます。