summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--project.py16
-rw-r--r--subcmds/abandon.py42
2 files changed, 58 insertions, 0 deletions
diff --git a/project.py b/project.py
index f963576b..0637f4bf 100644
--- a/project.py
+++ b/project.py
@@ -710,6 +710,22 @@ class Project(object):
710 else: 710 else:
711 raise GitError('%s checkout %s ' % (self.name, rev)) 711 raise GitError('%s checkout %s ' % (self.name, rev))
712 712
713 def AbandonBranch(self, name):
714 """Destroy a local topic branch.
715 """
716 try:
717 tip_rev = self.bare_git.rev_parse(R_HEADS + name)
718 except GitError:
719 return
720
721 if self.CurrentBranch == name:
722 self._Checkout(
723 self.GetRemote(self.remote.name).ToLocal(self.revision),
724 quiet=True)
725
726 cmd = ['branch', '-D', name]
727 GitCommand(self, cmd, capture_stdout=True).Wait()
728
713 def PruneHeads(self): 729 def PruneHeads(self):
714 """Prune any topic branches already merged into upstream. 730 """Prune any topic branches already merged into upstream.
715 """ 731 """
diff --git a/subcmds/abandon.py b/subcmds/abandon.py
new file mode 100644
index 00000000..4f976d7b
--- /dev/null
+++ b/subcmds/abandon.py
@@ -0,0 +1,42 @@
1#
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)