aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2009-05-02 09:42:31 +0200
committerCatalin Marinas <catalin.marinas@gmail.com>2009-10-05 10:46:34 +0100
commit00be16b0cde8e6c6cf23f0c3e530f85a4d4fbd90 (patch)
tree66fff317f92bd18a4cfafd26ee073c1ca8f8a60c
parent6c052b023837579aab6dcb030ffdcea4a88e37ed (diff)
downloadstgit-00be16b0cde8e6c6cf23f0c3e530f85a4d4fbd90.tar.gz
Never skip rebase
This is important if we have a custom rebase command (like "git svn rebase"). Signed-off-by: Jakob Stoklund Olesen <stoklund@2pi.dk> Signed-off-by: Catalin Marinas <catalin.marinas@gmail.com>
-rw-r--r--stgit/commands/common.py3
1 files changed, 0 insertions, 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: