The command git log --since="_______" filters the commit history from a specific date.
- yesterday
- 1/1/2022
- last week
- 3 days ago
The correct option is b. 2022-01-01. This option allows you to specify a date to filter the commit history and display only the commits made after that date. Using options like 'yesterday' or 'last week' might not provide accurate results, as they are relative and depend on the current date. It's crucial to understand how to use date formats when working with Git log commands.
Loading...
Related Quiz
- To save changes in Git, first stage them using git _______, then commit using git commit.
- How do you check the current version of Git installed on your system?
- To see a graphical representation of the commit history, you can use git log --_______.
- In the context of a large project, how does Git facilitate code reviews and quality assurance?
- In the context of Git, what is a 'Fork' primarily used for?