feat: add advanced node

This commit is contained in:
Bjarke Sporring
2026-01-07 19:26:11 +01:00
parent cf073d569e
commit 5f8091d5b2

View File

@@ -53,7 +53,7 @@ git status # Show the working tree status
git add <file> # Stage a specific file for commit
git add . # Stage all files in current directory
git commit -m "<message>" # 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
```