From 00be16b0cde8e6c6cf23f0c3e530f85a4d4fbd90 Mon Sep 17 00:00:00 2001 Message-Id: <00be16b0cde8e6c6cf23f0c3e530f85a4d4fbd90.1747083544.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 2 May 2009 09:42:31 +0200 Subject: [PATCH] Never skip rebase Organization: Straylight/Edgeware From: Jakob Stoklund Olesen This is important if we have a custom rebase command (like "git svn rebase"). Signed-off-by: Jakob Stoklund Olesen Signed-off-by: Catalin Marinas --- stgit/commands/common.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/stgit/commands/common.py b/stgit/commands/common.py index 0922b5d..ac53654 100644 --- a/stgit/commands/common.py +++ b/stgit/commands/common.py @@ -301,9 +301,6 @@ def rebase(crt_series, target): # it might be that we use a custom rebase command with its own # target type tree_id = target - if tree_id == git.get_head(): - out.info('Already at "%s", no need for rebasing.' % target) - return if target: out.start('Rebasing to "%s"' % target) else: -- [mdw]