Skip to content

Commit 3d94616

Browse files
phillipwoodgitster
authored andcommitted
rebase: respect --no-keep-empty
$OPT_SPEC has always allowed --no-keep-empty so lets start handling it. Signed-off-by: Phillip Wood <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 76ea235 commit 3d94616

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

git-rebase.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,9 @@ do
263263
--keep-empty)
264264
keep_empty=yes
265265
;;
266+
--no-keep-empty)
267+
keep_empty=
268+
;;
266269
--preserve-merges)
267270
preserve_merges=t
268271
test -z "$interactive_rebase" && interactive_rebase=implied

0 commit comments

Comments
 (0)