blob: 66fa02e199e4a1132bbe8d1857402af48e0d0368 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
==
be
==
----------------------------------------------
distributed bug tracking from the command line
----------------------------------------------
:Author: wking@drexel.edu
:Date: 2011-01-10
:Copyright: Permission is granted to copy, distribute and/or modify
this document under the terms of the GNU General Public License,
Version 2 or (at your option) any later version published by the
Free Software Foundation.
:Version: 0.2
:Manual section: 1
:Manual group: distributed bug tracker
SYNOPSIS
========
be [options] [command] [command_options] [commands_args...]
DESCRIPTION
===========
``be`` allows commandline interaction with the Bugs Everywhere
database in a project tree.
To avoid bit-rotted documentation, we do not describe all available
commands and options in this manpage. Run ``be help`` for accurate
documentation. See the Bugs Everywhere Manual
(http://docs.bugseverywhere.org/) for more detailed documentation and
tutorials.
COMMANDS
========
help
Print help for ``be`` and a list of all available commands.
Run ``be help`` for a complete list.
EXAMPLES
========
be help
Show general help and a list of all commands.
be help init
Show help for the ``init`` command.
be init
Initialize a new Bugs Everywhere database.
BUGS
====
The Bugs Everywhere uses Bugs Everywhere to track its bugs. You can
submit bugs directly using ``be``::
$ be --repo http://bugs.bugseverywhere.org/ new "The demuxulizer is broken"
Created bug with ID bea/abc
$ be --repo http://bugs.bugseverywhere.org/ comment bea/abc
<Describe bug>
$ be --repo http://bugs.bugseverywhere.org/ commit "Reported bug in demuxulizer"
Or send an email to the mailing list at `be-devel@bugseverywhere.org`_.
.. _be-devel@bugseverywhere.org:
http://void.printf.net/cgi-bin/mailman/listinfo/be-devel
|