Distributed, offline-first bug tracker embedded in git, with bridges
Go to file
2018-10-01 21:44:42 +02:00
bridge bridge: first working github importer 2018-09-25 19:10:38 +02:00
bug bug: add a test for operations hash 2018-10-01 21:44:42 +02:00
cache merge package operations into bug, they are tightly coupled anyway 2018-09-29 00:51:54 +02:00
commands select: clear the selected bug when invalid 2018-09-26 16:50:10 +02:00
doc commands: add a "deselect" command to deselect a previously selected bug 2018-09-26 16:49:00 +02:00
graphql bug: use a value embedding for OpBase 2018-10-01 11:37:17 +02:00
input repo: split the Repo interface to avoid abstraction leak in RepoCache 2018-09-21 18:53:37 +02:00
misc merge package operations into bug, they are tightly coupled anyway 2018-09-29 00:51:54 +02:00
repository commands: add "bridge rm" 2018-09-24 16:24:38 +02:00
termui bug: use deditated type for all TimelineItem 2018-09-30 17:15:54 +02:00
tests bug: define a hash-based identifier for an operation 2018-09-29 00:51:54 +02:00
util util: handle both sha1 and sha256 git hashes 2018-09-26 22:04:41 +02:00
vendor bug: use a value embedding for OpBase 2018-10-01 11:37:17 +02:00
webui webui: update favicon with git-bug logo 2018-09-20 11:41:13 +02:00
.gitignore upgrade the readme 2018-08-06 03:26:42 +02:00
.travis.yml travis: clean outdated build tag 2018-09-07 16:16:10 +02:00
git-bug.go webui: pack the files only on demand 2018-08-06 16:17:11 +02:00
Gopkg.lock bug: use a value embedding for OpBase 2018-10-01 11:37:17 +02:00
Gopkg.toml graphql: update gqlgen to 0.5.1 2018-09-14 12:41:59 +02:00
LICENSE Create LICENSE 2018-07-12 12:54:04 +02:00
Makefile makefile: add a target producing a debugger friendly build 2018-09-25 18:52:46 +02:00
README.md readme: fix a link 2018-09-29 11:45:55 +02:00

git-bug

Distributed bug tracker embedded in Git.

Build Status Backers on Open Collective Sponsors on Open Collective License: GPL v3 GoDoc Go Report Card Gitter chat

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 reports offline?

git-bug is a distributed bug tracker embedded in git. It uses 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 you are already using to collaborate with other people.

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

Install

Go get

go get -u github.com/MichaelMure/git-bug

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

export PATH=$PATH:$(go env GOROOT)/bin:$(go env GOPATH)/bin

Pre-compiled binaries

  1. Go to the release page and download the appropriate binary for your system.
  2. Copy the binary anywhere in your PATH
  3. Rename the binary to git-bug (or git-bug.exe on windows)

That's all !

Linux packages

CLI usage

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

Filter and sort bugs using a query:

git bug ls "status:open sort:edit"

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

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

Web UI (status: WIP)

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

Web UI screenshot 1 Web UI screenshot 2

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. Drop by the Gitter lobby for a chat.

Contributors

This project exists thanks to all the people who contribute.

Backers

Thank you to all our backers! 🙏 [Become a backer]

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

License

Unless otherwise stated, this project is released under the GPLv3 or later license © Michael Muré.

The git-bug logo by Viktor Teplov is released under the Creative Commons Attribution 4.0 International (CC BY 4.0) license © Viktor Teplov.