From 5f8091d5b22c36a13884dd596b2ffb70d8144161 Mon Sep 17 00:00:00 2001 From: Bjarke Sporring Date: Wed, 7 Jan 2026 19:26:11 +0100 Subject: [PATCH] feat: add advanced node --- 01_essentials/01-basics/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_essentials/01-basics/README.md b/01_essentials/01-basics/README.md index f4055d8..f2eac28 100644 --- a/01_essentials/01-basics/README.md +++ b/01_essentials/01-basics/README.md @@ -53,7 +53,7 @@ git status # Show the working tree status git add # Stage a specific file for commit git add . # Stage all files in current directory git commit -m "" # Create a commit with a message -git ls-tree -r HEAD --name-only # List all files in the latest commit +git ls-tree -r HEAD --name-only # ADVANCED: List all files in the latest commit git log # View commit history ```