Distributed, offline-first bug tracker embedded in git, with bridges
Go to file
Michael Muré 58abc6b0a3
Merge pull request #358 from MichaelMure/gitlab-tests
gitlab: fix issues import url
2020-03-28 17:11:16 +01:00
.github Update FUNDING.yml 2019-05-23 19:04:11 +02:00
bridge launchpad: tighten the bug matching 2020-03-28 17:08:58 +01:00
bug Merge remote-tracking branch 'origin/master' into cheshirekow-jira 2020-02-09 20:23:38 +01:00
cache cache: fix missing login in LegacyAuthorExcerpt causing panic 2020-03-05 21:57:55 +01:00
commands Merge pull request #344 from MichaelMure/github-lowercase-login 2020-02-29 17:26:33 +01:00
doc github-howto: change title 2020-03-01 17:17:38 +01:00
entity bridge: huge refactor to accept multiple kind of credentials 2019-12-08 21:28:27 +01:00
graphql identity: bring back the login to hold that info from bridges (purely informational) 2020-02-25 21:35:57 +01:00
identity identity: bring back the login to hold that info from bridges (purely informational) 2020-02-25 21:35:57 +01:00
input Fix compile errors on Windows 2020-02-25 17:25:29 +01:00
misc add workflow diagrams 2020-03-01 12:59:42 +01:00
repository git: fix GetRemote to not break when there is no remotes 2020-03-01 13:53:12 +01:00
termui termui: fix label cropped in the label edition window 2020-02-25 19:40:07 +01:00
tests repo: refactor how test repo are created/cleaned 2019-05-27 21:14:55 +02:00
util switch to go-term-text to fix bad underflow for label rendering 2019-11-03 14:00:35 +01:00
webui pack the webui 2020-02-23 16:31:49 +01:00
.gitignore gitignore: ignore jetbrains project files 2018-12-05 19:43:20 +01:00
.travis.yml travis: build with go-1.14, release with go-1.13 2020-03-01 16:48:09 +01:00
git-bug.go build: drop support for go 1.10 2020-02-06 13:14:29 +01:00
go.mod build(deps): bump github.com/mattn/go-runewidth from 0.0.8 to 0.0.9 2020-03-23 05:09:36 +00:00
go.sum build(deps): bump github.com/mattn/go-runewidth from 0.0.8 to 0.0.9 2020-03-23 05:09:36 +00:00
LICENSE Create LICENSE 2018-07-12 12:54:04 +02:00
Makefile makefile: add target to clean remote identities 2020-03-05 22:02:58 +01:00
README.md doc: refresh the github howto 2020-03-01 12:50:22 +01:00

git-bug

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

git-bug is a bug tracker that:

  • is fully embeded in git: you only need your git repository to have a bug tracker
  • is distributed: use your normal git remote to collaborate, push and pull your bugs!
  • works offline: in a plane or under the sea? Keep reading and writing bugs!
  • prevents vendor lock-in: your usual service is down or went bad? You already have a full backup.
  • is fast: listing bugs or opening them is a matter of milliseconds
  • doesn't pollute your project: no files are added in your project
  • integrates with your tooling: use the UI you like (CLI, terminal, web) or integrate with your existing tools through the CLI or the GraphQL API
  • bridges to other bug trackers: use bridges to import and export to other trackers.

🚧 This is now more than a proof of concept, but still not fully stable. Expect dragons and unfinished business. 🚧

Installation

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
Compile from git (unstable)
git clone git@github.com:MichaelMure/git-bug.git
make install

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

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

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 Gitlab Jira Launchpad
incremental
(can import more than once)
✔️ ✔️ ✔️
with resume
(download only new data)
✔️ ✔️ ✔️
identities ✔️ ✔️ ✔️ ✔️
identities update
bug ✔️ ✔️ ✔️ ✔️
comments ✔️ ✔️ ✔️ ✔️
comment editions ✔️ ✔️
labels ✔️ ✔️ ✔️
status ✔️ ✔️ ✔️
title edition ✔️ ✔️ ✔️
media/files
automated test suite ✔️ ✔️

Exporter implementations

Github Gitlab Jira Launchpad
bug ✔️ ✔️ ✔️
comments ✔️ ✔️ ✔️
comment editions ✔️ ✔️ ✔️
labels ✔️ ✔️ ✔️
status ✔️ ✔️ ✔️
title edition ✔️ ✔️ ✔️
automated test suite ✔️ ✔️

Bridge usage

Interactively configure a new github bridge:

git bug bridge configure

Or manually:

git bug bridge configure \
    --name=<bridge> \
    --target=github \
    --url=https://github.com/MichaelMure/git-bug \
    --login=<login>
    --token=<token>

Import bugs:

git bug bridge pull [<name>]

Export modifications:

git bug bridge push [<name>]

Deleting a bridge:

git bug bridge rm [<name>]

Internals

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

Misc

Planned features

  • media embedding
  • more bridges
  • 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.

git clone git@github.com:MichaelMure/git-bug.git

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.