This course will become read-only in the near future. Tell us at community.p2pu.org if that is a problem.

log


Viewing commit history.

Sometimes you need to look at the history of a particular project. Git keeps a log of all commits to a codebase. You can view the log by typing "git log". You will see commits in reverse order, and can scroll through commits with the Return/Enter key.

You can quit viewing the log at any time by pressing 'q'.

try it: 

$ git log

$ git log -p

Read more

Task Discussion