1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-11-30 16:18:19 +01:00

Add 'git-obs pr' command

This commit is contained in:
2025-01-14 16:16:20 +01:00
parent 166cadb31b
commit 124528e68b
13 changed files with 795 additions and 1 deletions

19
osc/commands_git/pr.py Normal file
View File

@@ -0,0 +1,19 @@
import osc.commandline_git
# we decided not to use the command name 'pull' because that could be confused
# with the completely unrelated 'git pull' command
class PullRequestCommand(osc.commandline_git.GitObsCommand):
"""
Manage pull requests
"""
name = "pr"
def init_arguments(self):
pass
def run(self, args):
self.parser.print_help()