Process Flow - Git configuration (user.name, user.email)
Start
Run git config --global user.name "Name"
Git saves user.name in global config
Run git config --global user.email "email@example.com"
Git saves user.email in global config
Verify with git config --global --list
End
This flow shows setting your name and email in Git's global config, then verifying the saved settings.