-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding support to json #34
Conversation
Awesome job @luizperes !! I'm thinking in two points (not blockers to merge this):
|
Great idea! 👍 |
👍 |
You are completely right, @cloudson, I will include that to your runtime_test! Regarding the json output flags and the possibility to have more flags for output, I also think that it's awesome. Will fix it soon |
Brilliant! |
Hi @cloudson , I am only concerning about the flag name Thanks |
Hey! |
Hi @cloudson , please check it again! I implemented the |
Perfect @luizperes . Is on develop. |
It sounds good! Thanks! I will also try to add new features later, such as the csv |
I'd love a way to pump data from git to MySQL/PGSQL to make some info graphics about my teams git history. CSV would work @luizperes but it might also be cool to have a SQL mode. Or a way to import from git into a RDBMS. |
This PR adds support to json as per #27
I also created a flag
-json
// not sure if it is the best name for the flagIn this way:
git ql "select author,hash from commits"
returns the classic table as its output.git ql -json "select author,hash from commits"
returns a json as its output.Please check the image below: