mirror of
https://github.com/RGBCube/nu_scripts
synced 2025-08-01 14:47:47 +00:00
🐛 fix optional arg in git stash show
(#765)
Hi! Another bug I found, in `git`, you can ```bash git stash show ``` with no args and should be alright, but the .nu script is requiring a git name. (maybe for a previous version of git it was needed)
This commit is contained in:
parent
d177037ed2
commit
6585a0f515
1 changed files with 1 additions and 1 deletions
|
@ -438,7 +438,7 @@ export extern "git stash list" [
|
|||
|
||||
# Show a stashed change
|
||||
export extern "git stash show" [
|
||||
stash: string@"nu-complete git stash-list"
|
||||
stash?: string@"nu-complete git stash-list"
|
||||
-U # show diff
|
||||
]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue