Git-bug: Difference between revisions

From wikinotes
Line 28: Line 28:
= Usage =
= Usage =
<blockquote>
<blockquote>
Basics
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
git bug add  # write bug details in $EDITOR (first line is title)
git bug add  # add a bug
git bug push  # push changes to git bug
git bug push  # push changes to git bug
git bug pull  # pull changes to git bug
git bug pull  # pull changes to git bug
</syntaxhighlight>
</syntaxhighlight>
UIs
<syntaxhighlight lang="bash">
git bug termui
git bug webui
</syntaxhighlight>
== termui ==
<blockquote>
<syntaxhighlight lang="yaml">
i: # pull latest bugs
o: # push latest bugs
n: # create bug
s: # search bugs
</syntaxhighlight>
</blockquote><!-- termui -->
== webui ==
<blockquote>
</blockquote><!-- webui -->
</blockquote><!-- Usage -->
</blockquote><!-- Usage -->

Revision as of 23:02, 7 January 2023

A bugtracker, designed to be committed alongside your code.
Provides both a TUI and a familiar web-UI!

Documentation

github https://github.com/MichaelMure/git-bug

Install

aura -As git-bug-bin # archlinux

Setup

go bug user create  # create your user
git bug webui       # confirm webui launches

Usage

Basics

git bug add   # add a bug
git bug push  # push changes to git bug
git bug pull  # pull changes to git bug

UIs

git bug termui
git bug webui

termui

i: # pull latest bugs
o: # push latest bugs
n: # create bug
s: # search bugs

webui