blob: 4f976d7ba19ef9694af0ee0d5cc2eef6dd36753a [file] [log] [blame]
Shawn O. Pearce9fa44db2008-11-03 11:24:59 -08001#
2# Copyright (C) 2008 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16import sys
17from command import Command
18from git_command import git
19
20class Abandon(Command):
21 common = True
22 helpSummary = "Permanently abandon a development branch"
23 helpUsage = """
24%prog <branchname> [<project>...]
25
26This subcommand permanently abandons a development branch by
27deleting it (and all its history) from your local repository.
28
29It is equivalent to "git branch -D <branchname>".
30"""
31
32 def Execute(self, opt, args):
33 if not args:
34 self.Usage()
35
36 nb = args[0]
37 if not git.check_ref_format('heads/%s' % nb):
38 print >>sys.stderr, "error: '%s' is not a valid name" % nb
39 sys.exit(1)
40
41 for project in self.GetProjects(args[1:]):
42 project.AbandonBranch(nb)