gitbase
gitbase copied to clipboard
SQL interface to git repositories, written in Go. https://docs.sourced.tech/gitbase
The [community-edition](https://docs.sourced.tech/community-edition) in `README` is broken that I can't reach, is there have something go wrong and forget update documentation? or my un stable network
https://sourced.tech/products/community-edition/ The above link is not responding.
hi I use below code ` docker run -itd --name git_base --env GITBASE_PASSWORD=root -p 3344:3306 -v /Users/code/test:/opt/repos srcd/gitbase:latest ` and java jdbc connection gitbase mysql ` Connection connection=JDBCUtils.getConnection("jdbc:mysql://127.0.0.1:3344/gitbase","root","root"); ` but...
Hey, when I try to run the following example in the db ``` SELECT repository_id, file_path, JSON_UNQUOTE(JSON_EXTRACT(bl, "$.linenum")), JSON_UNQUOTE(JSON_EXTRACT(bl, "$.author")), JSON_UNQUOTE(JSON_EXTRACT(bl, "$.text")) FROM (SELECT repository_id, file_path, EXPLODE(BLAME(repository_id, commit_hash, file_path)) AS...
In gitbase 0.20 schema introspection is fast and full. MySQL Connector/J JDBC metadata call that gets all columns for all tables at once `metaData.getColumns("gitbase", "", "%", "%")` is converted to...
I keep getting `unknown error: object not found` but there are no logs about this error for debugging. Example: ``` $ docker exec -it 8633920ca611 mysql Welcome to the MariaDB...
``` MySQL [gitbase]> select blob_hash, repository_id from blobs natural join repositories where blob_hash in ('93ec5b4525363844ddb1981adf1586ebddbc21c1', 'aad34590345310fe813fd1d9eff868afc4cea10c', 'ed82eb69daf806e521840f4320ea80d4fe0af435'); +------------------------------------------+-------------------------------------+ | blob_hash | repository_id | +------------------------------------------+-------------------------------------+ | aad34590345310fe813fd1d9eff868afc4cea10c | github.com/bblfsh/javascript-driver | |...
I tried adding Gitbase as a MySQL database to metabase but unfortunately it got stuck trying to connect over and over again asking for some variables that weren't supported. This...
This proposes to add a UDF based on [go-license-detector](https://github.com/src-d/go-license-detector) to classify licenses of repositories to gitbase core. That UDF requires all the files in HEAD belonging to a repository. cc...
There is currently no way to allow extraction of nested properties of a node, which would be useful for getting, for example, the line and column of the position.