repo_work #1

Closed
armistace wants to merge 40 commits from repo_work into master
Showing only changes of commit 3a909f5ac1 - Show all commits

View File

@ -66,7 +66,7 @@ class GitRepository:
def create_and_switch_branch(self, branch_name, remote_name='origin', ref_name='main'):
"""Create a new branch in the repository with authentication."""
try:
pring(f"Creating Branch {title}")
print(f"Creating Branch {branch_name}")
# Use the same remote and ref as before
self.repo.git.branch(branch_name)
except GitCommandError: