/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
0.431.1 by Jelmer Vernooij
Start work on propose command.
1
# Copyright (C) 2018 Jelmer Vernooij <jelmer@jelmer.uk>
2
#
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
7
#
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
0.432.2 by Jelmer Vernooij
Publish command sort of works.
17
"""Management of hosted branches."""
0.431.1 by Jelmer Vernooij
Start work on propose command.
18
0.434.1 by Jelmer Vernooij
Use absolute_import.
19
from __future__ import absolute_import
20
0.431.1 by Jelmer Vernooij
Start work on propose command.
21
from ...commands import plugin_cmds
22
23
plugin_cmds.register_lazy("cmd_propose_merge", ["propose"], __name__ + ".cmds")
7296.9.1 by Jelmer Vernooij
Add 'brz land' subcommand.
24
plugin_cmds.register_lazy("cmd_land_merge_proposal", ["land"], __name__ + ".cmds")
0.431.18 by Jelmer Vernooij
Rename 'brz publish' to 'brz publish-derived'.
25
plugin_cmds.register_lazy("cmd_publish_derived", ['publish'], __name__ + ".cmds")
0.431.37 by Jelmer Vernooij
add a find-merge-proposal command.
26
plugin_cmds.register_lazy("cmd_find_merge_proposal", ['find-proposal'], __name__ + ".cmds")
0.431.47 by Jelmer Vernooij
Add github login command.
27
plugin_cmds.register_lazy("cmd_github_login", ["gh-login"], __name__ + ".cmds")
0.431.59 by Jelmer Vernooij
Add gitlab-login command.
28
plugin_cmds.register_lazy("cmd_gitlab_login", ["gl-login"], __name__ + ".cmds")
0.431.63 by Jelmer Vernooij
Add 'brz my-proposals' command.
29
plugin_cmds.register_lazy(
30
    "cmd_my_merge_proposals", ["my-proposals"],
31
    __name__ + ".cmds")