gitql
v2.3.1
gitql是一种git查询语言。
在存储库路径中...

在这里查看更多
您可以访问发布页面,然后抓住二进制文件。如果您想自行编译,则只需运行go build . 。
gitql "your query"
或者git ql "your query"
例如,这是commits表:
| 提交 |
|---|
| 作者 |
| fure_email |
| 参数 |
| Committer_email |
| 哈希 |
| 日期 |
| 信息 |
| full_message |
(请参阅此处的更多表)
select hash, author, message from commits limit 3select hash, message from commits where 'hell' in full_message or 'Fuck' in full_messageselect hash, message, author_email from commits where author = 'cloudson'select date, message from commits where date < '2014-04-10'select message from commits where 'hell' in message order by date ascselect distinct author from commits where date < '2020-01-01' gitql或打开问题
笔记:
git log它是为了科学而创建的! ?