fix: pwsh doesn't like @{} since it's a pwsh hashtable. Should wrap in a string

This commit is contained in:
Bjarke Sporring
2026-01-21 12:54:14 +01:00
parent 9659d82d2a
commit 84ed357feb

View File

@@ -194,10 +194,7 @@ git stash pop
git stash apply
# Apply a specific stash
git stash apply stash@{1}
# Apply a specific stash by number
git stash apply 1
git stash apply "stash@{1}"
```
### Managing Stashes
@@ -207,7 +204,7 @@ git stash apply 1
git stash drop
# Drop a specific stash
git stash drop stash@{1}
git stash drop "stash@{1}"
# Clear all stashes
git stash clear
@@ -293,10 +290,10 @@ git stash pop
git stash list
# Show summary of what changed
git stash show stash@{0}
git stash show "stash@{0}"
# Show full diff
git stash show -p stash@{0}
git stash show -p "stash@{0}"
```
### "Stash conflicts when I apply"