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

The Object File

Let's take a look at what's inside this suspicious commit object file.

Assignment

cat <path-to-file-from-before>

Nope... it's a mess. The contents have been compressed to raw bytes!

xxd <path-to-file-from-before>

You may need to install xxd.

xxd <path-to-file-from-before> > /tmp/commit_object_hex.txt

Run and submit the CLI tests.