From: Karl Hasselström Date: Thu, 20 Mar 2008 23:12:11 +0000 (+0000) Subject: Make sure that we only uncommit commits with exactly one parent X-Git-Tag: v0.15-rc1~266 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/4fe3436ba426814d6682f585226961d29475b65e?hp=b9d9ba14bf9fc47ab1ae9c41e6e37029b9f31002 Make sure that we only uncommit commits with exactly one parent If we encounter a commit with 0, or 2 or more parents, fail with a nice error message instead of crashing. Signed-off-by: Karl Hasselström --- diff --git a/stgit/commands/uncommit.py b/stgit/commands/uncommit.py index 933ec60..272c5db 100644 --- a/stgit/commands/uncommit.py +++ b/stgit/commands/uncommit.py @@ -85,13 +85,23 @@ def func(parser, options, args): patchnames = args patch_nr = len(patchnames) + def get_parent(c): + next = c.data.parents + try: + [next] = next + except ValueError: + raise common.CmdException( + 'Trying to uncommit %s, which does not have exactly one parent' + % c.sha1) + return next + commits = [] next_commit = stack.base if patch_nr: out.start('Uncommitting %d patches' % patch_nr) for i in xrange(patch_nr): commits.append(next_commit) - next_commit = next_commit.data.parent + next_commit = get_parent(next_commit) else: if options.exclusive: out.start('Uncommitting to %s (exclusive)' % to_commit) @@ -103,7 +113,7 @@ def func(parser, options, args): commits.append(next_commit) break commits.append(next_commit) - next_commit = next_commit.data.parent + next_commit = get_parent(next_commit) patch_nr = len(commits) taken_names = set(stack.patchorder.applied + stack.patchorder.unapplied) diff --git a/t/t1300-uncommit.sh b/t/t1300-uncommit.sh index 0d952a7..a906d13 100755 --- a/t/t1300-uncommit.sh +++ b/t/t1300-uncommit.sh @@ -78,7 +78,7 @@ test_expect_success \ stg commit --all ' -test_expect_failure 'Uncommit a commit with not precisely one parent' ' +test_expect_success 'Uncommit a commit with not precisely one parent' ' stg uncommit -n 5 ; [ $? = 2 ] && [ "$(echo $(stg series))" = "" ] '