diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 402 |
1 files changed, 103 insertions, 299 deletions
@@ -1,336 +1,140 @@ -<p align="center"> - <img width="150px" src="https://cdn.rawgit.com/git-bug/git-bug/master/misc/logo/logo-alpha-flat-bg.svg"> -</p> -<h1 align="center">git-bug</h1> - <div align="center"> -[](#backers) -[](#sponsors) -[](http://www.gnu.org/licenses/gpl-3.0) -[](https://godoc.org/github.com/git-bug/git-bug) -[](https://goreportcard.com/report/github.com/git-bug/git-bug) -[](https://gitter.im/the-git-bug/Lobby) - -</div> - -`git-bug` is a bug tracker that: - -- **is fully embedded 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](#bridges) to import and export to other trackers. - -## Help needed! - -This project has grown bigger than I can handle by myself, especially with a day job. I'm looking for people to help on or maintain part of it: -- each bridges (go) -- the terminal UI (go) -- the web UI (Typescript/React/GraphQL) - -Individually, those pieces are not especially complex but doing everything make it hard for me to focus on the core where things get more complicated. If this is useful for you or you just want to join the fun, maybe consider it? - -## Installation - -<details><summary>Pre-compiled binaries</summary> - -1. Go to the [release page](https://github.com/git-bug/git-bug/releases/latest) 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 ! - -</details> - -<details><summary>Windows packages</summary> - -* [Scoop](https://github.com/ScoopInstaller/Main/blob/master/bucket/git-bug.json) - ``` - scoop install git-bug - ``` - -</details> - -<details><summary>Linux packages</summary> - -* [Archlinux (AUR)](https://aur.archlinux.org/packages/?K=git-bug) -* [NixOS](https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/version-management/git-and-tools/git-bug/default.nix#L31) - -</details> - -<details><summary>macOS packages</summary> - -* [Homebrew](https://formulae.brew.sh/formula/git-bug) - ``` - brew install git-bug - ``` - -</details> - -<details><summary>FreeBSD package/port</summary> - -Install via the package manager - ``` - pkg install git-bug - ``` - -Or from the ports collection - ``` - cd /usr/ports/devel/git-bug && make install clean - ``` - -</details> - -<details><summary>Compile from git (unstable)</summary> - -```shell -git clone https://github.com/git-bug/git-bug.git -cd git-bug -make install -``` - -If it's not done already, add the golang binary directory in your PATH: - -```bash -export PATH=$PATH:$(go env GOROOT)/bin:$(go env GOPATH)/bin -``` - -</details> - -## Workflows - -There are multiple ways to use `git-bug`: - -<details><summary>Native workflow</summary> -<p align="center"> - <img src="misc/diagrams/native_workflow.png" alt="Native workflow"> -</p> - -This is the pure `git-bug` experience. In a similar fashion as with code, use `git bug push` and `git bug pull` to push and pull your bugs between git remotes and collaborate with your teammate. - -</details> - -<details><summary>Bridge workflow</summary> -<p align="center"> - <img src="misc/diagrams/bridge_workflow.png" alt="Bridge workflow"> -</p> - -As `git-bug` has bridges with other bug-trackers, you can use it as your personal local remote interface. Sync with `git bug bridge pull` and `git bug bridge push`, work from your terminal, integrate into your editor, it's up to you. And it works offline ! - -</details> - -<details><summary>Web UI workflow (WIP)</summary> -<p align="center"> - <img src="misc/diagrams/webui-workflow.png" alt="Web UI workflow"> -</p> - -Often, projects needs to have their bug-tracker public and accept editions from anyone facing a problem. To support this workflow, `git-bug` aims to have the web UI accept external OAuth authentication and act as a public portal. However the web UI is not up to speed for that yet. Contribution are very much welcome! +<img width="64px" src="https://cdn.rawgit.com/git-bug/git-bug/master/misc/logo/logo-alpha-flat-bg.svg"> -</details> +# git-bug: a decentralized issue tracker -## CLI usage +[![Build Status][ci/badge]][ci/url] -Create a new identity: +[![Backers on Open Collective][backers/badge]][oc] +[![Sponsors on Open Collective][sponsors/badge]][oc] +[![GPL v3 License][license/badge]][license/url] +[![GoDoc][godoc/badge]][godoc/url] +[![Go Report Card][report-card/badge]][report-card/url] +[![Matrix][matrix/badge]][matrix/url] -``` -git bug user create -``` +[Issues] - [Documentation][doc] - [Feedback][discuss] -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](doc/queries.md): -``` -git bug ls "status:open sort:edit" -``` - -Search for bugs by text content: -``` -git bug ls "foo bar" baz -``` - -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](doc/md/git-bug.md). - -## Interactive terminal UI - -An interactive terminal UI is available using the command `git bug termui` to browse and edit bugs. - - - -## Web UI - -You can launch a rich Web UI with `git bug webui`. - -<p align="center"> - <img src="misc/webui1.png" alt="Web UI screenshot 1" width="880"> -</p> - -<p align="center"> - <img src="misc/webui2.png" alt="Web UI screenshot 2" width="880"> -</p> - -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](api/graphql/schema). - -## Bridges - -β
: working π : partial implementation β: not working - -### Importer implementations - -| | Github | Gitlab | Jira | Launchpad | -|-------------------------------------------------|:------:|:------:|:----:|:---------:| -| **incremental**<br/>(can import more than once) | β
| β
| β
| β | -| **with resume**<br/>(download only new data) | β
| β
| β
| β | -| **identities** | π | π | π | π | -| **bugs** | β
| β
| β
| π | -| **board** | β | β | β | β | -| **media/files** | β | β | β | β | -| **automated test suite** | β
| β
| β | β | - -### Exporter implementations - -| | Github | Gitlab | Jira | Launchpad | -|--------------------------|:------:|:------:|:----:|:---------:| -| **identities** | π | π | π | π | -| **bug** | β
| β
| β
| β | -| **board** | β | β | β | β | -| **automated test suite** | β
| β
| β | β | - -#### Bridge usage - -Interactively configure a new github bridge: - -```bash -git bug bridge new -``` - -Or manually: - -```bash -git bug bridge new \ - --name=<bridge> \ - --target=github \ - --url=https://github.com/git-bug/git-bug \ - --login=<login> \ - --token=<token> -``` - -Import bugs: - -```bash -git bug bridge pull [<name>] -``` - -Export modifications: - -```bash -git bug bridge push [<name>] -``` - -Deleting a bridge: - -```bash -git bug bridge rm [<name>] -``` +</div> -## Internals +## Overview<a name="overview"></a> -Interested in how it works ? Have a look at the [data model](doc/model.md) and the [internal bird-view](doc/architecture.md). +[git-bug](https://github.com/git-bug/git-bug) is a standalone, distributed, +offline-first issue management tool that embeds issues, comments, and more as +objects in a git repository (_not files!_), enabling you to push and pull them +to one or more remotes. -Or maybe you want to [make your own distributed data-structure in git](entity/dag/example_test.go) ? +<!-- mdformat-toc start --slug=github --maxlevel=6 --minlevel=2 --> -See also all the [docs](doc). +- [Overview](#overview) +- [Key Features](#key-features) +- [Getting Started](#getting-started) +- [Our Community](#our-community) + - [Backers :star:](#backers-star) + - [Sponsors :star2:](#sponsors-star2) +- [License](#license) -## Misc +<!-- mdformat-toc end --> -- [Bash, Zsh, fish, powershell completion](misc/completion) -- [ManPages](doc/man) +## Key Features<a name="key-features"></a> -## Planned features +- **Native Git Storage:** Manage issues, users, and comments directly within + your repository - keeping everything versioned and clutter-free +- **Distributed & Versioned:** Leverage Gitβs decentralized architecture to work + offline and sync seamlessly later +- **Lightning Fast:** List and search issues in mere _milliseconds_ +- **Third-Party Bridges:** Easily synchronize issues with platforms like GitHub + and GitLab [using bridges][doc/usage/bridges] +- **Flexible Interfaces:** Choose how you interact - via CLI, TUI, or a web + browser +- **Effortless Integration:** Start managing issues your repository with minimal + setup -The [feature matrix](doc/feature_matrix.md) gives a good overview of what is planned, without being exhaustive. +## Getting Started<a name="getting-started"></a> -Additional planned feature: -- webUI that can be used as a public portal to accept user's input -- inflatable raptor +- :triangular_flag_on_post: **Install:** Check out + [`//:INSTALLATION.md`][doc/install] for step-by-step installation instructions + or explore [the latest release][rel/latest] to get started immediately. +- :page_with_curl: **Explore:** Read [the documentation][doc] to learn how to + use `git-bug` effectively +- :computer: **Contribute:** Interested in hacking on `git-bug`? Head over to + [`//:CONTRIBUTING.md`][contrib] and see how you can help shape the project +- :speech_balloon: **Connect:** Chat with us live on Matrix at + [`#git-bug:matrix.org`][matrix/url] +- :books: **Discuss:** Browse [existing discussions][discuss] or + [start a new one][discuss/new] to ask questions and share ideas -## Contribute +## Our Community<a name="our-community"></a> -PRs accepted. Drop by the [Gitter lobby](https://gitter.im/the-git-bug/Lobby) or the [Matrix room](https://matrix.to/#/#git-bug:matrix.org) for a chat, look at the [feature matrix](doc/feature_matrix.md) or browse the issues to see what is worked on or discussed. +`git-bug` thrives thanks to the passion of its [contributors], the generosity of +independent [backers][oc], and the strategic support of our [sponsors][oc]. Each +of you plays a crucial role in our journey, and we deeply appreciate every +contribution that helps drive our project forward. -```shell -git clone git@github.com:git-bug/git-bug.git -``` +_[Make a contribution][oc] to support this project and get featured below!_ -You can now run `make` to build the project, or `make install` to install the binary in `$GOPATH/bin/`. +### Backers :star:<a name="backers-star"></a> -To work on the web UI, have a look at [the dedicated Readme.](webui/Readme.md) +<div align="center"> -Some tests for the CLI use golden files, if the output of CLI commands is -changed, run the following command, then inspect the changed files in -`commands/testdata/...` to make sure the output text is as expected: +[![backers][backers/image]][oc] -```shell -go test ./commands -update -``` +</div> -## Contributors :heart: +### Sponsors :star2:<a name="sponsors-star2"></a> -This project exists thanks to all the people who contribute. -<a href="https://github.com/git-bug/git-bug/graphs/contributors"><img src="https://opencollective.com/git-bug/contributors.svg?width=890&button=false" /></a> +<div align="center"> +[![][sponsor/0]][sponsor/0/url] -## Backers +</div> -Thank you to all our backers! π [[Become a backer](https://opencollective.com/git-bug#backer)] +## License<a name="license"></a> -<a href="https://opencollective.com/git-bug#backers" target="_blank"><img src="https://opencollective.com/git-bug/tiers/backer.svg?width=890"></a> +Unless otherwise stated, this project and all assets within it are released +under [GPLv3][license/url] or later, copyright [Michael MurΓ©][gh/mm]. +The `git-bug` logo is authored by and copyright [Viktor Teplov][gh/vandesign], +released under a [CC BY 4.0][license/logo] license. -## Sponsors +______________________________________________________________________ -Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/git-bug#sponsor)] +<div align="center"> -<a href="https://opencollective.com/git-bug/sponsor/0/website" target="_blank"><img src="https://opencollective.com/git-bug/tiers/sponsor/0/avatar.svg"></a> -<a href="https://opencollective.com/git-bug/sponsor/1/website" target="_blank"><img src="https://opencollective.com/git-bug/tiers/sponsor/1/avatar.svg"></a> -<a href="https://opencollective.com/git-bug/sponsor/2/website" target="_blank"><img src="https://opencollective.com/git-bug/tiers/sponsor/2/avatar.svg"></a> -<a href="https://opencollective.com/git-bug/sponsor/3/website" target="_blank"><img src="https://opencollective.com/git-bug/tiers/sponsor/3/avatar.svg"></a> -<a href="https://opencollective.com/git-bug/sponsor/4/website" target="_blank"><img src="https://opencollective.com/git-bug/tiers/sponsor/4/avatar.svg"></a> -<a href="https://opencollective.com/git-bug/sponsor/5/website" target="_blank"><img src="https://opencollective.com/git-bug/tiers/sponsor/5/avatar.svg"></a> -<a href="https://opencollective.com/git-bug/sponsor/6/website" target="_blank"><img src="https://opencollective.com/git-bug/tiers/sponsor/6/avatar.svg"></a> -<a href="https://opencollective.com/git-bug/sponsor/7/website" target="_blank"><img src="https://opencollective.com/git-bug/tiers/sponsor/7/avatar.svg"></a> -<a href="https://opencollective.com/git-bug/sponsor/8/website" target="_blank"><img src="https://opencollective.com/git-bug/tiers/sponsor/8/avatar.svg"></a> -<a href="https://opencollective.com/git-bug/sponsor/9/website" target="_blank"><img src="https://opencollective.com/git-bug/tiers/sponsor/9/avatar.svg"></a> +This project and its vibrant community was initially dreamt up and built by +[Michael MurΓ©][gh/mm]. +Thank you for all of your hard work! -## License +:heart: -Unless otherwise stated, this project is released under the [GPLv3](LICENSE) or later license Β© Michael MurΓ©. +</div> -The git-bug logo by [Viktor Teplov](https://github.com/vandesign) is released under the [Creative Commons Attribution 4.0 International (CC BY 4.0)](misc/logo/LICENSE) license Β© Viktor Teplov. +[backers/badge]: https://opencollective.com/git-bug/backers/badge.svg +[backers/image]: https://opencollective.com/git-bug/tiers/backer.svg?avatarHeight=50 +[ci/badge]: https://github.com/git-bug/git-bug/actions/workflows/trunk.yml/badge.svg +[ci/url]: https://github.com/git-bug/git-bug/actions/workflows/trunk.yml +[contrib]: ./CONTRIBUTING.md +[contributors]: https://github.com/git-bug/git-bug/graphs/contributors +[discuss]: https://github.com/git-bug/git-bug/discussions +[discuss/new]: https://github.com/git-bug/git-bug/discussions/new/choose +[doc]: ./doc +[doc/install]: ./INSTALLATION.md +[doc/usage/bridges]: ./doc/usage/bridges.md +[gh/mm]: https://github.com/MichaelMure +[gh/vandesign]: https://github.com/vandesign +[godoc/badge]: https://godoc.org/github.com/git-bug/git-bug?status.svg +[godoc/url]: https://godoc.org/github.com/git-bug/git-bug +[issues]: https://github.com/git-bug/git-bug/issues +[license/badge]: https://img.shields.io/badge/License-GPLv3+-blue.svg +[license/logo]: ./misc/logo/LICENSE +[license/url]: ./LICENSE +[matrix/badge]: https://img.shields.io/badge/chat%20on%20matrix-%23238636 +[matrix/url]: https://matrix.to/#/#git-bug:matrix.org +[oc]: https://opencollective.com/git-bug +[rel/latest]: https://github.com/git-bug/git-bug/releases/latest +[report-card/badge]: https://goreportcard.com/badge/github.com/git-bug/git-bug +[report-card/url]: https://goreportcard.com/report/github.com/git-bug/git-bug +[sponsor/0]: https://opencollective.com/git-bug/tiers/sponsor/0/avatar.svg +[sponsor/0/url]: https://opencollective.com/git-bug/sponsor/0/website +[sponsors/badge]: https://opencollective.com/git-bug/sponsors/badge.svg |