fix(git-completion): add missing completion for git rebase --show-current-patch and --quit

Closes #12805
This commit is contained in:
Clément Bœsch
2026-06-07 17:51:39 +02:00
committed by Johannes Altmanninger
parent 8585def79d
commit 6fe05fa772
10 changed files with 56 additions and 0 deletions

View File

@@ -5069,6 +5069,9 @@ msgstr ""
msgid "Abort the rebase operation"
msgstr ""
msgid "Abort the rebase operation but keep HEAD where it is"
msgstr ""
msgid "Abort without restoring branch"
msgstr ""
@@ -60230,6 +60233,9 @@ msgstr ""
msgid "Show the package source RPM name"
msgstr ""
msgid "Show the patch file being applied or merged"
msgstr ""
msgid "Show the plain metadata.xml file"
msgstr ""

View File

@@ -5069,6 +5069,9 @@ msgstr ""
msgid "Abort the rebase operation"
msgstr ""
msgid "Abort the rebase operation but keep HEAD where it is"
msgstr ""
msgid "Abort without restoring branch"
msgstr ""
@@ -60230,6 +60233,9 @@ msgstr ""
msgid "Show the package source RPM name"
msgstr ""
msgid "Show the patch file being applied or merged"
msgstr ""
msgid "Show the plain metadata.xml file"
msgstr ""

View File

@@ -5198,6 +5198,9 @@ msgstr "Annuler la résolution de conflits en cours"
msgid "Abort the rebase operation"
msgstr "Annuler le rebasage"
msgid "Abort the rebase operation but keep HEAD where it is"
msgstr ""
msgid "Abort without restoring branch"
msgstr ""
@@ -60359,6 +60362,9 @@ msgstr ""
msgid "Show the package source RPM name"
msgstr ""
msgid "Show the patch file being applied or merged"
msgstr ""
msgid "Show the plain metadata.xml file"
msgstr ""

View File

@@ -5072,6 +5072,9 @@ msgstr ""
msgid "Abort the rebase operation"
msgstr ""
msgid "Abort the rebase operation but keep HEAD where it is"
msgstr ""
msgid "Abort without restoring branch"
msgstr ""
@@ -60233,6 +60236,9 @@ msgstr ""
msgid "Show the package source RPM name"
msgstr ""
msgid "Show the patch file being applied or merged"
msgstr ""
msgid "Show the plain metadata.xml file"
msgstr ""

View File

@@ -5065,6 +5065,9 @@ msgstr ""
msgid "Abort the rebase operation"
msgstr ""
msgid "Abort the rebase operation but keep HEAD where it is"
msgstr ""
msgid "Abort without restoring branch"
msgstr ""
@@ -60226,6 +60229,9 @@ msgstr ""
msgid "Show the package source RPM name"
msgstr ""
msgid "Show the patch file being applied or merged"
msgstr ""
msgid "Show the plain metadata.xml file"
msgstr ""

View File

@@ -5070,6 +5070,9 @@ msgstr ""
msgid "Abort the rebase operation"
msgstr ""
msgid "Abort the rebase operation but keep HEAD where it is"
msgstr ""
msgid "Abort without restoring branch"
msgstr ""
@@ -60231,6 +60234,9 @@ msgstr ""
msgid "Show the package source RPM name"
msgstr ""
msgid "Show the patch file being applied or merged"
msgstr ""
msgid "Show the plain metadata.xml file"
msgstr ""

View File

@@ -5066,6 +5066,9 @@ msgstr ""
msgid "Abort the rebase operation"
msgstr ""
msgid "Abort the rebase operation but keep HEAD where it is"
msgstr ""
msgid "Abort without restoring branch"
msgstr ""
@@ -60227,6 +60230,9 @@ msgstr ""
msgid "Show the package source RPM name"
msgstr ""
msgid "Show the patch file being applied or merged"
msgstr ""
msgid "Show the plain metadata.xml file"
msgstr ""

View File

@@ -5090,6 +5090,9 @@ msgstr ""
msgid "Abort the rebase operation"
msgstr ""
msgid "Abort the rebase operation but keep HEAD where it is"
msgstr ""
msgid "Abort without restoring branch"
msgstr ""
@@ -60251,6 +60254,9 @@ msgstr ""
msgid "Show the package source RPM name"
msgstr ""
msgid "Show the patch file being applied or merged"
msgstr ""
msgid "Show the plain metadata.xml file"
msgstr ""

View File

@@ -5067,6 +5067,9 @@ msgstr ""
msgid "Abort the rebase operation"
msgstr ""
msgid "Abort the rebase operation but keep HEAD where it is"
msgstr ""
msgid "Abort without restoring branch"
msgstr ""
@@ -60228,6 +60231,9 @@ msgstr ""
msgid "Show the package source RPM name"
msgstr ""
msgid "Show the patch file being applied or merged"
msgstr ""
msgid "Show the plain metadata.xml file"
msgstr ""

View File

@@ -2181,6 +2181,8 @@ complete -f -c git -n '__fish_git_using_command rebase' -n __fish_git_is_rebasin
complete -f -c git -n '__fish_git_using_command rebase' -n __fish_git_is_rebasing -l abort -d 'Abort the rebase operation'
complete -f -c git -n '__fish_git_using_command rebase' -n __fish_git_is_rebasing -l edit-todo -d 'Edit the todo list'
complete -f -c git -n '__fish_git_using_command rebase' -n __fish_git_is_rebasing -l skip -d 'Restart the rebasing process by skipping the current patch'
complete -f -c git -n '__fish_git_using_command rebase' -n __fish_git_is_rebasing -l show-current-patch -d 'Show the patch file being applied or merged'
complete -f -c git -n '__fish_git_using_command rebase' -n __fish_git_is_rebasing -l quit -d 'Abort the rebase operation but keep HEAD where it is'
complete -f -c git -n '__fish_git_using_command rebase' -l keep-empty -d "Keep the commits that don't change anything"
complete -f -c git -n '__fish_git_using_command rebase' -l keep-base -d 'Keep the base commit as-is'
complete -f -c git -n '__fish_git_using_command rebase' -s m -l merge -d 'Use merging strategies to rebase'