mirror of
https://github.com/RGBCube/nu_scripts
synced 2025-08-01 06:37:46 +00:00
Fix: remove duplicate in git-completions.nu (#1016)
This remove a duplicate: the `--no-edit` was there twice in the "git commit" command completion. After my change, the only remaining `--no-edit` is at line 455.
This commit is contained in:
parent
a9b829115f
commit
62c3aa7403
1 changed files with 0 additions and 1 deletions
|
@ -429,7 +429,6 @@ export extern "git commit" [
|
||||||
--all(-a) # automatically stage all modified and deleted files
|
--all(-a) # automatically stage all modified and deleted files
|
||||||
--amend # amend the previous commit rather than adding a new one
|
--amend # amend the previous commit rather than adding a new one
|
||||||
--message(-m): string # specify the commit message rather than opening an editor
|
--message(-m): string # specify the commit message rather than opening an editor
|
||||||
--no-edit # don't edit the commit message (useful with --amend)
|
|
||||||
--reuse-message(-C): string # reuse the message from a previous commit
|
--reuse-message(-C): string # reuse the message from a previous commit
|
||||||
--reedit-message(-c): string # reuse and edit message from a commit
|
--reedit-message(-c): string # reuse and edit message from a commit
|
||||||
--fixup: string # create a fixup/amend commit
|
--fixup: string # create a fixup/amend commit
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue