Add change 17 to instructions

This commit is contained in:
David Doblas Jiménez 2024-03-20 19:43:29 +01:00
parent b0d8cab498
commit 78044a877a
1 changed files with 12 additions and 0 deletions

12
how_to/Change_17.md Normal file
View File

@ -0,0 +1,12 @@
- log: Implement
`log` will walk the list of commits and print them.
We will start by implementing `get_commit()` that will parse a commit object by
OID.
Then in the CLI module we will start from the HEAD commit and walk its parents
until we reach a commit without a parent.
The result is that the entire commit history is printed to the screen once we
run `ugit log`.