Process Flow - Editing commit messages with rebase
Start: Identify commits to edit
Run: git rebase -i <commit>
Editor opens with commit list
Change 'pick' to 'reword' for target commit
Save and close editor
Editor opens for commit message
Edit commit message
Save and close editor
Rebase continues and finishes
Updated commit message applied
This flow shows how to start an interactive rebase, mark commits for message editing, update the message, and complete the rebase.