tweak(cherry-pick): be more explicit with usage of ls

This commit is contained in:
Bjarke Sporring
2026-01-21 12:12:59 +01:00
parent 1d0003bb70
commit dbba2da5f2

View File

@@ -117,6 +117,7 @@ Now copy the bug fix commits from development to main:
2. Cherry-pick the security fix:
```pwsh
git cherry-pick <security-fix-hash>
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 <performance-fix-hash>
ls # we now have the cache.py file!
```
6. Verify both fixes are now on main: