cd — change directory (go into a folder)ls — list files (see what's in the folder)pwd — print working directory (where am I?)git status — What's changed?git diff — What exactly changed?git add . — Stage all changesgit commit -m "message" — Save a checkpointgit push — Upload to GitHubgit stash — Temporarily hide changes"I am a novice and don't understand much, so please don't overcomplicate the project or its architecture."— Your starter prompt for AI

git stash to save work and reset. Communicate what you did back to the AI.# Go into a folder
cd folder-name
# Go up one level
cd ..
# List files in current folder
ls
# Show current location
pwd
# What's changed?
git status
# See exact changes
git diff
# Stage all changes
git add .
# Save checkpoint
git commit -m "message"
# Upload to GitHub
git push
# Temporarily hide changes
git stash
# Bring back stashed changes
git stash pop