Intermediate Git & Version Control
Q53 / 100

What is the purpose of "git log --graph --oneline --all"?

Correct! Well done.

Incorrect.

The correct answer is A) It displays a compact, ASCII-art visualization of the commit history across all branches, showing how branches diverged and merged

A

Correct Answer

It displays a compact, ASCII-art visualization of the commit history across all branches, showing how branches diverged and merged

Explanation

This combination is a popular way to visualize branch and merge structure directly in the terminal: "--graph" draws lines between commits, "--oneline" condenses each commit to one line, and "--all" includes all refs.

Progress
53/100