2009-04-10 20:01:24 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2009 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
import sys
|
|
|
|
from command import Command
|
2009-04-18 22:04:41 +00:00
|
|
|
from progress import Progress
|
2009-04-10 20:01:24 +00:00
|
|
|
|
|
|
|
class Checkout(Command):
|
|
|
|
common = True
|
|
|
|
helpSummary = "Checkout a branch for development"
|
|
|
|
helpUsage = """
|
|
|
|
%prog <branchname> [<project>...]
|
2009-04-13 19:11:31 +00:00
|
|
|
"""
|
|
|
|
helpDescription = """
|
|
|
|
The '%prog' command checks out an existing branch that was previously
|
|
|
|
created by 'repo start'.
|
2009-04-10 20:01:24 +00:00
|
|
|
|
2009-04-13 19:11:31 +00:00
|
|
|
The command is equivalent to:
|
2009-04-10 20:01:24 +00:00
|
|
|
|
2009-04-13 19:11:31 +00:00
|
|
|
repo forall [<project>...] -c git checkout <branchname>
|
2009-04-10 20:01:24 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
def Execute(self, opt, args):
|
|
|
|
if not args:
|
|
|
|
self.Usage()
|
|
|
|
|
2009-04-18 22:04:41 +00:00
|
|
|
nb = args[0]
|
|
|
|
err = []
|
2011-04-07 19:51:04 +00:00
|
|
|
success = []
|
2012-10-11 07:44:48 +00:00
|
|
|
all_projects = self.GetProjects(args[1:])
|
2009-04-18 22:04:41 +00:00
|
|
|
|
2012-10-11 07:44:48 +00:00
|
|
|
pm = Progress('Checkout %s' % nb, len(all_projects))
|
|
|
|
for project in all_projects:
|
2009-04-18 22:04:41 +00:00
|
|
|
pm.update()
|
2011-04-07 19:51:04 +00:00
|
|
|
|
|
|
|
status = project.CheckoutBranch(nb)
|
|
|
|
if status is not None:
|
|
|
|
if status:
|
|
|
|
success.append(project)
|
|
|
|
else:
|
|
|
|
err.append(project)
|
2009-04-18 22:04:41 +00:00
|
|
|
pm.end()
|
|
|
|
|
|
|
|
if err:
|
2011-04-07 19:51:04 +00:00
|
|
|
for p in err:
|
|
|
|
print >>sys.stderr,\
|
|
|
|
"error: %s/: cannot checkout %s" \
|
|
|
|
% (p.relpath, nb)
|
|
|
|
sys.exit(1)
|
|
|
|
elif not success:
|
|
|
|
print >>sys.stderr, 'error: no project has branch %s' % nb
|
2009-04-18 22:04:41 +00:00
|
|
|
sys.exit(1)
|