Distributed, offline-first bug tracker embedded in git, with bridges
Go to file
2019-04-29 11:52:16 +02:00
bridge github: fix potential bug due to var aliasing 2019-03-01 23:07:24 +01:00
bug bug: fix a potential crash with malformed data in EditCommentOperation 2019-04-17 18:27:55 +02:00
cache doc: add an architecture overview 2019-04-18 02:48:27 +02:00
commands commands: fix ls not displaying the new Identities properly 2019-04-11 20:04:44 +02:00
doc Update architecture.md 2019-04-18 14:14:37 +02:00
entity cache: properly push/pull identities and bugs 2019-03-27 21:44:11 +01:00
graphql graphql: expose valid labels 2019-04-10 22:36:34 +02:00
identity commands: display comment's id in "git bug comment" 2019-03-28 01:21:41 +01:00
input Made requested changes 2019-03-02 23:06:55 +05:30
misc move media in /misc 2019-04-17 20:27:33 +02:00
repository a round of cleanup 2019-03-01 22:52:53 +01:00
termui termui: make bugTable only use the cache Easy pick 2019-04-21 00:55:39 +02:00
tests identity: add more test for serialisation and push/pull/merge + fixes 2019-03-01 22:40:24 +01:00
util commands: show the last modification time in "user" 2019-03-01 22:52:54 +01:00
vendor force a version of golang.org/x/tools due to an incompatibility with gqlgen 2019-04-10 20:30:34 +02:00
webui webui: pack it 2019-03-31 21:53:48 +02:00
.gitignore gitignore: ignore jetbrains project files 2018-12-05 19:43:20 +01:00
.travis.yml travis: enable go 1.12, build release with go 1.11 2019-04-22 01:26:01 +02:00
git-bug.go drop go 1.8 support 2019-04-09 21:56:56 +02:00
Gopkg.lock force a version of golang.org/x/tools due to an incompatibility with gqlgen 2019-04-10 20:30:34 +02:00
Gopkg.toml force a version of golang.org/x/tools due to an incompatibility with gqlgen 2019-04-10 20:30:34 +02:00
LICENSE Create LICENSE 2018-07-12 12:54:04 +02:00
Makefile a round of cleanup 2019-03-01 22:52:53 +01:00
README.md readme: improve the bridge feature matrix 2019-04-29 11:52:16 +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 identity:

git bug user create

Create a new bug:

git bug add

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.

Termui recording

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.

Bridges

Importer implementations

Github Launchpad
incremental
(can import more than once)
✔️
with resume
(download only new data)
identities ✔️ ✔️
identities update
bug ✔️ ✔️
comments ✔️ ✔️
comment editions ✔️
labels ✔️
status ✔️
title edition ✔️
automated test suite

Exporter implementations

Todo !

Internals

Interested by how it works ? Have a look at the data model and the internal bird-view.

Misc

Planned features

  • media embedding
  • exporter to github issue
  • extendable data model to support arbitrary bug tracker
  • inflatable raptor

Contribute

PRs accepted. Drop by the Gitter lobby for a chat or browse the issues to see what is worked on or discussed.

Developers unfamiliar with Go may try to clone the repository using "git clone". Instead, one should use:

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

The git repository will then be available:

# Note that $GOPATH defaults to $HOME/go
$ cd $GOPATH/src/github.com/MichaelMure/git-bug/

You can now run make to build the project, or make install to install the binary in $GOPATH/bin/.

To work on the web UI, have a look at the dedicated Readme.

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.