diff --git a/cli/src/core/git.py b/cli/src/core/git.py index 37a5aaf..78f5c15 100644 --- a/cli/src/core/git.py +++ b/cli/src/core/git.py @@ -52,7 +52,7 @@ def git_push_changes( logger.info("Successfully pushed!") except Exception as e: - logger.info(f"Git Operation Failed: {e}") + raise RuntimeError(f"Git Operation Failed: {e}") from e def delete_local_branch(repo: git.Repo, branch_name: str):