Process Flow - git stash to save changes
Make changes in files
Run 'git stash'
Changes saved in stash
Working directory clean
Later: Run 'git stash apply' or 'git stash pop'
Changes restored to working directory
You save your current changes safely with 'git stash', clean your workspace, and later restore those changes when ready.