PROMOTE_003 — Promote Git Failed
What This Means
Section titled “What This Means”A git operation (creating a branch, committing, or pushing) failed during the promote process.
Common Causes
Section titled “Common Causes”- No git remote configured for the repository
- Push was rejected (e.g., remote branch has diverged)
- Git authentication failed (expired token, missing SSH key)
- Network connectivity issues
How to Fix
Section titled “How to Fix”- Verify a git remote is configured:
git remote -v - Check that you have push access to the remote repository
- If authentication failed, refresh your credentials (SSH key, personal access token, etc.)
- If the remote branch has diverged, pull the latest changes first:
git pull --rebase
Example Output
Section titled “Example Output”Error PROMOTE_003: git push failed: authentication required Suggestion: ensure git remote is configured and you have push access