

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 4
click for more info
Not enough gems
Cost: 6 gems
1: Git Remote
incomplete
2: Adding a Remote
incomplete
3: Fetch
incomplete
4: Making Fetch Happen
incomplete
5: Not Fetched
incomplete
6: Log Remote
incomplete
7: Merge
incomplete
This lesson's interactive features are locked, please to keep using them
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.