filhodanuvem / gitql

💊 A git query language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

like or regex search

jcubic opened this issue · comments

It would be nice to have like or regex keywords to search commits by part of the message like this:

select message from commits where message like "%console.log%"

to have all commits that have console.log in it or when count(*) is added

select count(*) from commits where message like "%console.log%"

that would be great to have, it is in TODO now :)

Implementing a where clause like and grouping mechanisms like count(*) should be in different issues.

There is already an issue for count(*) #26

It's done by @jsixface :)