Process Flow - git log --oneline and --graph
Start: git log command
Parse --oneline flag
Show each commit as one line
Parse --graph flag
Draw ASCII graph of commit branches
Display combined output
End
The git log command reads commit history, then --oneline shortens each commit to one line, and --graph adds a visual ASCII branch graph.