mirror of
https://github.com/danielmiessler/fabric
synced 2024-11-10 07:10:31 +00:00
unfucking things
This commit is contained in:
parent
be78527707
commit
7338411a7d
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user