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 | sort -d
-d 选项按字母顺序排序。
git ls-files列出所有跟踪的文件,并且顺序似乎按要求按字母顺序排列。
git ls-files