From 62c3aa74030ea9336bf84c692287117139a5f9ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Riegel?= <96702577+LoicRiegel@users.noreply.github.com> Date: Thu, 16 Jan 2025 03:58:54 +0100 Subject: [PATCH] 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. --- custom-completions/git/git-completions.nu | 1 - 1 file changed, 1 deletion(-) diff --git a/custom-completions/git/git-completions.nu b/custom-completions/git/git-completions.nu index fb6349b..50a9c43 100644 --- a/custom-completions/git/git-completions.nu +++ b/custom-completions/git/git-completions.nu @@ -429,7 +429,6 @@ export extern "git commit" [ --all(-a) # automatically stage all modified and deleted files --amend # amend the previous commit rather than adding a new one --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 --reedit-message(-c): string # reuse and edit message from a commit --fixup: string # create a fixup/amend commit