3

我需要检查 git repo 子目录中的最新更改。我想在一行中获取最新的提交信息(sha、作者、消息,可能是日期)。是否可以?

4

1 回答 1

6
git log -n 1 --format="%h %aN %s %ad" -- $directory
于 2012-10-01T10:23:11.537 回答