Intermediate Git & Version Control
Q77 / 100

What does "git log --since='2 weeks ago' --author='Jane'" do?

Correct! Well done.

Incorrect.

The correct answer is A) It filters the commit history to show only commits made by an author matching "Jane" within the last two weeks

A

Correct Answer

It filters the commit history to show only commits made by an author matching "Jane" within the last two weeks

Explanation

"git log" supports many filtering options, including date ranges ("--since", "--until") and author matching ("--author"), useful for auditing recent contributions from specific team members.

Progress
77/100