added create_branch function to git-cont.py.

pull/286/head
FlyingPhishy 6 months ago
parent d34831dbd6
commit 11b373f49e

@ -11,6 +11,11 @@ def update_fork():
subprocess.run(['git', 'push', 'origin', 'main'], check=True) # Push the updated main branch to your fork on GitHub subprocess.run(['git', 'push', 'origin', 'main'], check=True) # Push the updated main branch to your fork on GitHub
print("Fork updated successfully.") print("Fork updated successfully.")
def create_branch(branch_name):
print(f"Creating new branch '{branch_name}'...")
subprocess.run(['git', 'checkout', '-b', branch_name], check=True)
print(f"Branch '{branch_name}' created and switched to.")
def push_changes(branch_name, commit_message): def push_changes(branch_name, commit_message):
# Push your local changes to your fork on GitHub # Push your local changes to your fork on GitHub
print("Pushing changes to fork...") print("Pushing changes to fork...")
@ -54,6 +59,8 @@ def main():
if args.command == 'update-fork': if args.command == 'update-fork':
update_fork() update_fork()
elif args.command == 'create-branch':
create_branch(args.branch_name)
elif args.command == 'push-changes': elif args.command == 'push-changes':
push_changes(args.branch_name, args.commit_message) push_changes(args.branch_name, args.commit_message)
elif args.command == 'create-pr': elif args.command == 'create-pr':

Loading…
Cancel
Save