X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/fe847176ac839e64d426e6bf8ab7ad67ba3129d6..a22a62b6760b0e1531d783e414c65ada3d1525d6:/stgit/commands/branch.py diff --git a/stgit/commands/branch.py b/stgit/commands/branch.py index be501a8..c7561a8 100644 --- a/stgit/commands/branch.py +++ b/stgit/commands/branch.py @@ -125,12 +125,8 @@ def func(parser, options, args): tree_id = None if len(args) == 2: tree_id = git_id(args[1]) - - if git.branch_exists(args[0]): - raise CmdException, 'Branch "%s" already exists' % args[0] - stack.Series(args[0]).init() - git.create_branch(args[0], tree_id) + stack.Series(args[0]).init(create_at = tree_id) print 'Branch "%s" created.' % args[0] return