The git log command isn't only useful for your local repo. You can log the commits of a remote repo as well!
git log [<remote>/<branch>]
For example, if you wanted to see the commits of a branch named primeagen from a remote named origin you would run:
git log origin/primeagen
First, fetch the latest remote refs:
git fetch origin
Run git log on the remote webflyx repo's update_dune branch using the --oneline flag. Do it from within the webflyx-local repo. You should see commits "A" through "I".
The remote should be named origin from a previous lesson.
Run and submit the CLI tests from inside the new webflyx-local directory.