这与这个问题有关,但我认为它需要一个单独的问题。
git blame --line-porcelain
的输出是这样的
27ce485030bf872158ceb011e6bd775d2ead5eeb 9 36 1
author Joao Tavora
author-time 1358179206
committer Joao Tavora
committer-time 1358179206
summary initial commit
boundary
filename test.el
(defun AB (space task next.task)
242020d0de6363d48d32465299d07239f0a9940f 19 37 1
author Joao Tavora
author-time 1358179709
committer Joao Tavora
committer-time 1358179709
summary reinstate declare
previous 11da1748d905aa9520ee3d6d9ac6a8712db0040f test.el
filename test.el
(declare (ignore space))
cbfa1ec071dd30a27be82dd041ccc9c384e5ff60 11 38 2
author Joao Tavora
author-time 1358179273
committer Joao Tavora
committer-time 1358179273
summary use thingy
previous 69af7ace6e2b6c006c86e4fd91bf3c15ff8cec07 test.el
filename test.el
(if (and (some.task.p (task (IP.TASK-thingy task)))
我如何使用sed(或grep或awk)解析来过滤出提交sha还有提交时间呢?在上面的例子中,它应该输出:
27ce485030bf872158ceb011e6bd775d2ead5eeb 1358179206
242020d0de6363d48d32465299d07239f0a9940f 1358179709
cbfa1ec071dd30a27be82dd041ccc9c384e5ff60 1358179273
我宁愿不依赖ruby,尽管perl一行代码可能是OK的。
这可能适合您(GNU sed):
sed -r '/^[0-9a-f]{40}b/!d;:a;/ncommitter-timeb/bb;$!{N;ba};:b;s/s+.*(s.*)/1/' file
这可能是完全错误的,但是试试这个:
git shortlog --format="%H %ct" -- <filename>
您可能还想在命令后用tail -n +2
管道截断前几行。当然,这并没有显示逐行更改,但我不确定您到底想要哪些部分。
我发现
git blame -l -e -t -- file-to-blame | awk '{print $1 " " $3}'
几乎解决了我的问题,但我认为这样做是为了作者时间。我很想学习解析--line-porcelain
输出