如何记录每个分支的最后提交时间?
记录今天的相对时间非常好。
我知道git branch -v
显示sha1并为每个头提交主题行。
我看到提交sha1,但是,我不记得每个提交时间。
答案 0 :(得分:0)
以下是如何构建我的一个脚本的示例。
git for-each-ref --sort=committerdate refs/heads/ --format='%(HEAD) %(color:yellow)%(refname:short)%(color:reset) - %(color:red)%(objectname:short)%(color:reset) - %(contents:subject) - %(authorname) (%(color:green)%(committerdate:relative)%(color:reset))'
答案 1 :(得分:0)
git log --branches --no-walk --date=relative
您喜欢的任何格式选项,可能是--format=%cd %d %s
?