We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

Log Remote

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

Assignment

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.