fix: use git stash push instead of git stash save which is deprecated

This commit is contained in:
Bjarke Sporring
2026-01-18 09:27:12 +01:00
parent 382a125076
commit a898030a9f
2 changed files with 8 additions and 8 deletions

View File

@@ -287,7 +287,7 @@ git stash
Save your uncommitted changes temporarily and revert to a clean working directory.
```bash
git stash save "description"
git stash push -m "<description>"
```
Stash changes with a descriptive message.