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 命令可以显示:
filename last_updated
我最接近的是:
git log --format=format:'%ci' --name-only
但这需要处理和解析才能得到我想要的。
谢谢xcorsx ......你指出我正确的方向:
find ./ -type f -printf "%h/%f %TY-%Tm-%Td\n"