gitql

💊 A git query language

MIT License

Downloads
6
Stars
6.2K
Committers
26

Bot releases are hidden (Show)

gitql - v2.3.1 Latest Release

Published by filhodanuvem almost 2 years ago

Bug fixes and dependency upgrades

gitql - v2.3.0

Published by filhodanuvem over 3 years ago

  • Gitql binary uses the embed file version.txt to outputs the gitql version command. On every release, the file content is replaced by the correct tag or git commit sha.
  • Set .goreleaser.yml to force it to release to all platforms (including windows).
gitql - v2.2.1

Published by filhodanuvem over 3 years ago

On adding functional tests I've noticed that queries using order by have results differently than a normal git log.
You can check the change here.

gitql - DISTINCT and USE branches support

Published by filhodanuvem over 3 years ago

DISTINCT

Use select distinct to group rows by a certain field.
Eg.: select distinct author from commits where date > '2020-01-01 .

USE

To switch to another branch you can run use <branch>.

gitql - Remove usage of git2go in favour of go-git.

Published by filhodanuvem about 4 years ago

gitql - Static binary release

Published by filhodanuvem almost 5 years ago

  • Provide a static binary for linux and windows 64 bits
  • Move from travis to github actions
  • remove support to remotes
  • use fixed version of OS on github actions
  • set short and long flags for cli
gitql - COUNT function

Published by filhodanuvem over 5 years ago

Add support to count results. Another amazing work from @budden

gitql - Add initial windows support

Published by filhodanuvem over 5 years ago

With a great help of @budden , we allow users to use gitql on windows.
This support is on beta stage, we appreciate any feedback from win users.

gitql - NOT Operator

Published by filhodanuvem about 6 years ago

#68 Language accepts not in and not like operations.

Thanks for @frahman5, who worked on it 🎉.

gitql - New operators

Published by filhodanuvem about 6 years ago

  • Add LIKE operator to work better than in - 6716a7
  • Add <> as not equal operator - f0d7b3
  • Allow in operator to work with order by - aab37b

Thanks to @luizperes , @jsixface and other contributors who works a lot on these operators.

gitql - 1.3.0

Published by filhodanuvem almost 8 years ago

  • Add support to interactive mode -i #14
  • Fix multiline support on table mode #40
  • Fix long flags to work just with two dashes (eg:. --type instead of -type)
gitql - 1.2.1

Published by filhodanuvem almost 8 years ago

  • Add support to json output #34
    gitql -type=json "select * from commits"
  • Fix build/install process to avoid to work with LD_LIBRARY_PATH