Distributed, offline-first bug tracker embedded in git, with bridges
Go to file
2018-08-09 14:45:02 +02:00
bug termui: commit the bug when quiting the show bug window 2018-08-09 14:45:02 +02:00
cache termui: commit the bug when quiting the show bug window 2018-08-09 14:45:02 +02:00
commands bash completion: thanks to @tst2005, make the completion works for "git bug <command>" 2018-08-08 20:31:31 +02:00
doc doc: complete the model doc now that the code is more stable 2018-08-07 14:57:12 +02:00
graphql implement media hosting in git for comments + API for the webui 2018-08-02 23:37:49 +02:00
input termui: add the previous title in the template when editing 2018-08-08 21:25:06 +02:00
misc bash completion: thanks to @tst2005, make the completion works for "git bug <command>" 2018-08-08 20:31:31 +02:00
repository bug: add a Lamport logical clock to be able to sort bugs by creation time and edit time without having to rely on a timestamp 2018-08-06 20:31:20 +02:00
termui termui: commit the bug when quiting the show bug window 2018-08-09 14:45:02 +02:00
tests fix test 2018-08-02 23:45:40 +02:00
util termui: commit the bug when quiting the show bug window 2018-08-09 14:45:02 +02:00
vendor graphql: simplify the requests with helpers 2018-08-01 19:24:19 +02:00
webui webui: fix graphql queries 2018-08-08 19:05:34 +02:00
.gitignore upgrade the readme 2018-08-06 03:26:42 +02:00
.travis.yml travis: run the cross compile only when deploying 2018-08-06 16:17:44 +02:00
git-bug.go webui: pack the files only on demand 2018-08-06 16:17:11 +02:00
Gopkg.lock graphql: simplify the requests with helpers 2018-08-01 19:24:19 +02:00
Gopkg.toml vendor gocui on the master branch because of no release in a while 2018-07-30 18:22:52 +02:00
LICENSE Create LICENSE 2018-07-12 12:54:04 +02:00
Makefile webui: pack the files only on demand 2018-08-06 16:17:11 +02:00
README.md readme: add the go report card badge 2018-08-09 00:07:57 +02:00

git-bug

Build Status License: GPL v3 GoDoc Go Report Card

Bugtracker embedded in Git

Would it be nice to not have to rely on a web service somewhere to deal with bugs ?

Would it be nice to be able to browse and edit bug report offline ?

git-bug is a bugtracker embedded in git. It use git's internal storage so no files are added in your project.

As you would do with commits and branches, you can push your bugs to the same git remote your are already using to collaborate with other peoples.

🚧 This is for now a proof of concept. Expect dragons and unfinished business. 🚧

Install

go get github.com/MichaelMure/git-bug

If it's not done already, add golang binary directory in your PATH:

export PATH=$PATH:$GOROOT/bin:$GOPATH/bin

That's all ! In the future, pre-compiled binary will be provided for convenience.

CLI usage (status: working but need UX improvement)

Create a new bug:

git bug new

Your favorite editor will open to write a title and a message.

You can push your new entry to a remote:

git bug push [<remote>]

And pull for updates:

git bug pull [<remote>]

List existing bugs:

git bug ls

You can now use commands like show, comment, open or close to display and modify bugs. For more details about each command, you can run git bug <command> --help or read the command's documentation.

Interactive terminal UI (status: WIP)

An interactive terminal UI is available using the command git bug termui to browse and edit bugs.

terminal UI

// TODO: replace with less test data ;-)

Web UI (status: terribly WIP)

You can launch a rich Web UI with git bug webui.

Web UI

This web UI is entirely packed inside the same go binary and serve static content through a localhost http server.

The web UI interact with the backend through a GraphQL API. The schema is available here.

Internals

Interested by how it works ? Have a look at the data model.

Misc

Planned features

  • media embedding
  • import/export of github issue
  • extendable data model to support arbitrary bug tracker
  • inflatable raptor

Contribute

PRs accepted.

License

GPLv3 or later © Michael Muré