From dbba2da5f2ae0a509b0e79cd5e2ac44e1d104714 Mon Sep 17 00:00:00 2001 From: Bjarke Sporring Date: Wed, 21 Jan 2026 12:12:59 +0100 Subject: [PATCH] tweak(cherry-pick): be more explicit with usage of ls --- 01-essentials/05-cherry-pick/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/01-essentials/05-cherry-pick/README.md b/01-essentials/05-cherry-pick/README.md index 920fb26..36f10f6 100644 --- a/01-essentials/05-cherry-pick/README.md +++ b/01-essentials/05-cherry-pick/README.md @@ -117,6 +117,7 @@ Now copy the bug fix commits from development to main: 2. Cherry-pick the security fix: ```pwsh git cherry-pick + ls # we now have the security.py file! # Example if the hash is abc1234: # git cherry-pick abc1234 @@ -129,6 +130,7 @@ Now copy the bug fix commits from development to main: 5. Cherry-pick the performance fix: ```pwsh git cherry-pick + ls # we now have the cache.py file! ``` 6. Verify both fixes are now on main: