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它是為了科學而創建的! ?