Process Flow - git revert to undo a commit safely
Identify commit to undo
Run git revert <commit>
Git creates a new commit
New commit reverses changes
Push changes to remote (optional)
This flow shows how git revert safely undoes a commit by creating a new commit that reverses the changes.