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 repo 的时间,我知道我可以使用以下内容查看提交的数量,但我需要每个开发人员最后一次提交的日期/时间
git pull -v; git shortlog -s -n -e
请帮助我.. 我需要一种东方的方式来找出我的每个开发人员最后一次提交的时间。
shortlog 很棒,但我还需要每个开发人员提交的最后时间/日期。
这会让你开始。它显示提交时间,然后在下一行显示摘要。
git shortlog -sne |awk '{print $1,$2,$3,system("git log -n1 --format=%cd --author=" $2)}'
它看起来很糟糕,最后包含一个额外的 0,但它确实为您提供了您所要求的。