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: