PROMOTE_001 — Promote Dirty Tree
What This Means
Section titled “What This Means”The working tree has uncommitted changes that must be resolved before promoting content.
Common Causes
Section titled “Common Causes”- Modified files in the syllago library that have not been committed
- Untracked files in the content directory
- A previous promote operation was interrupted, leaving partial changes
How to Fix
Section titled “How to Fix”- Run
git statusin your syllago library to see uncommitted changes - Commit your changes:
git add . && git commit -m "your message" - Or stash them temporarily:
git stash - Then retry the promote operation
Example Output
Section titled “Example Output”Error PROMOTE_001: uncommitted changes in working tree Suggestion: commit or stash your changes before promoting content