Browse Source

last min fixes

pull/286/head
FlyingPhishy 8 months ago
parent
commit
82e3c0a521
  1. 2
      github-contributing.py

2
github-contributing.py

@ -15,7 +15,7 @@ def create_branch(branch_name):
print(f"Creating new branch '{branch_name}'...") print(f"Creating new branch '{branch_name}'...")
subprocess.run(['git', 'checkout', '-b', branch_name], check=True) subprocess.run(['git', 'checkout', '-b', branch_name], check=True)
print(f"Branch '{branch_name}' created and switched to.") 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...")

Loading…
Cancel
Save