本文介绍了git status - 列出上次修改日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用git,是否可以列出未处理文件的最后修改日期以及它的路径?使用例如。
Using git, is it possible to list an unstaged file's last modified date alongside it's path? using eg.
git status
或
git diff --name-only
git diff --name-only
推荐答案
Not directly but you can use a pipe:
不是直接的,但可以使用管道。同时读取模式文件; echo $ mode $ file $(stat -c%y $ file);完成
git status -s | while read mode file; do echo $mode $file $(stat -c %y $file); done
这篇关于git status - 列出上次修改日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!