From 548af731f0d18cb2cacfa7299e1db467728003c9 Mon Sep 17 00:00:00 2001 From: Tim <45259958+carlfriedrich@users.noreply.github.com> Date: Wed, 11 Jan 2023 10:22:53 +0100 Subject: [PATCH] Fix command list in help output (#274) 'rebase' and 'fixup' were accidentally displayed on the same line. --- bin/git-forgit | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/git-forgit b/bin/git-forgit index c29f7d7..cf36b68 100755 --- a/bin/git-forgit +++ b/bin/git-forgit @@ -611,9 +611,10 @@ valid_commands=( "cherry_pick_from_branch" "clean" "diff" + "fixup" "ignore" "log" - "rebase fixup" + "rebase" "reset_head" "revert_commit" "stash_show"