Complete the command to show a simple list of commits with one line each.
git log [1]The --oneline option shows each commit in a single line, making the log easier to read.
Complete the command to show a graphical representation of the commit history.
git log [1]The --graph option draws a text-based graph showing branches and merges in the commit history.
Fix the error in the command to show a compact graph with one line per commit.
git log [1] --graphCombining --oneline with --graph shows a compact graph with one line per commit.
Fill both blanks to create a command that shows one line per commit and colors the output.
git log [1] [2]
Using --oneline and --color together shows a simple colored list of commits.
Fill all three blanks to create a command that shows a colored graph with one line per commit and shows the author name.
git log [1] [2] --pretty=format:'%h - %an - %s' [3]
This command combines --oneline, --color, and --graph to show a colored graph with short commit info and author names.