标签: git
我需要检查git仓库子目录中的最新更改。我想在一行中获得最新的提交信息(sha,author,message,可能是date)。有可能吗?
答案 0 :(得分:4)
git log -n 1 --format="%h %aN %s %ad" -- $directory