Distributed, offline-first bug tracker embedded in git, with bridges
Go to file
2018-07-25 23:49:14 +02:00
bug some cleaning 2018-07-25 21:27:50 +02:00
cache cache: add shortcut functions 2018-07-25 21:49:32 +02:00
commands more refactoring to have reusable bug action across different UI 2018-07-25 18:01:32 +02:00
doc webui: Add flag to specify which port to listen to 2018-07-22 00:16:51 +02:00
graphql add a cache to support the graphql API and the future interactive CLI UI 2018-07-25 21:27:50 +02:00
repository more refactoring to have reusable bug action across different UI 2018-07-25 18:01:32 +02:00
tests add test for push/pull/rebase with a real git repo 2018-07-25 18:02:11 +02:00
util ls: add some colors 2018-07-17 20:23:14 +02:00
vendor generate markdown documentation 2018-07-20 15:46:14 +02:00
webui Remove webui/build/ from git tree 2018-07-25 19:47:09 +02:00
.gitignore generate zsh completion 2018-07-20 16:08:55 +02:00
.travis.yml travis: add codegov hook 2018-07-25 23:49:14 +02:00
git-bug.go generate zsh completion 2018-07-20 16:08:55 +02:00
Gopkg.lock generate markdown documentation 2018-07-20 15:46:14 +02:00
Gopkg.toml humanize time 2018-07-19 18:10:45 +02:00
LICENSE Create LICENSE 2018-07-12 12:54:04 +02:00
Makefile cleanup webui 2018-07-17 02:10:04 +02:00
notes implement pull/merge 2018-07-17 01:52:56 +02:00
pack_webui.go generate markdown documentation 2018-07-20 15:46:14 +02:00
Readme.md update readme with the label command 2018-07-18 16:51:49 +02:00

git-bug

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 the same internal storage so it doesn't pollute 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.

Usage

It's really a WIP but you can already create a bug:

git bug new "This doesn't even build"

Your favorite editor will open to write a description.

You can push your new entry to a remote:

git bug push [<remote>]

And pull for updates:

git bug pull [<remote>]

You can now use commands like show, comment, open or close to display and modify bugs.

All commands

# Mark the bug as closed
git bug close <id>

# Display available commands
git bug commands [<option>...]

# Add a new comment to a bug
git bug comment [<options>...] <id>

# Manipulate bug's label
git bug label <id> [<option>...] [<label>...]

# Display a summary of all bugs
git bug ls 

# Create a new bug
git bug new [<option>...] <title>

# Mark the bug as open
git bug open <id>

# Pull bugs update from a git remote
git bug pull [<remote>]

# Push bugs update to a git remote
git bug push [<remote>]

# Display the details of a bug
git bug show <id>

# Launch the web UI
git bug webui 

Internals

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

Planned features

  • interactive CLI UI
  • rich web UI
  • media embedding
  • import/export of github issue
  • inflatable raptor

Contribute

PRs accepted.

License

GPLv3 or later © Michael Muré