Skip to content

Contributing Working Safely

Doug Fennell edited this page Sep 29, 2025 · 1 revision

Contributing: Working Safely

For contributors making changes to docs or code, use a quick safety workflow to avoid losing local work while you experiment with the demo.

Recommended workflow

# Check your working tree
git status

# Stash tracked + untracked changes (if any)
git stash -u

# Create a feature/working branch
git checkout -b docs/demo-setup

# Later: bring back your stash if needed
git stash pop  # or git stash list / git stash apply

This keeps Quick Start simple for users, while giving contributors a safe workflow for iterating on docs or demo code.

Clone this wiki locally