From 7338411a7d52cd2304138c44373c94258706efa1 Mon Sep 17 00:00:00 2001 From: FlyingPhishy Date: Thu, 21 Mar 2024 14:20:37 +0000 Subject: [PATCH] unfucking things --- github-contributing.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/github-contributing.py b/github-contributing.py index 4ec3c51..074b24d 100644 --- a/github-contributing.py +++ b/github-contributing.py @@ -44,6 +44,9 @@ def main(): # Subparser for updating fork parser_update = subparsers.add_parser('update-fork', help="Update fork with the latest from the original repository") + parser_create_branch = subparsers.add_parser('create-branch', help="Create a new branch") + parser_create_branch.add_argument('--branch-name', required=True, help="The name for the new branch") + # Subparser for pushing changes parser_push = subparsers.add_parser('push-changes', help="Push local changes to the fork") parser_push.add_argument('--branch-name', required=True, help="The name of the branch you are working on")