Process Flow - git diff --staged for staged changes
Make changes to files
Stage changes with git add
Run git diff --staged
Show differences between staged files and last commit
Use output to review staged changes
This flow shows how you first modify files, then stage them, and finally use 'git diff --staged' to see what changes are ready to be committed.