blob: 7479697051a14addf86487adc3d4853595408455 [file] [log] [blame]
Daniel Sandler9e426aa2010-04-01 10:42:33 -04001#
2# Copyright (C) 2010 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
Sarah Owenscecd1d82012-11-01 22:59:27 -070016from __future__ import print_function
Daniel Sandler9e426aa2010-04-01 10:42:33 -040017import sys
18
19from command import Command
20from git_command import GitCommand
Daniel Sandler9e426aa2010-04-01 10:42:33 -040021
22class Rebase(Command):
23 common = True
24 helpSummary = "Rebase local branches on upstream branch"
25 helpUsage = """
26%prog {[<project>...] | -i <project>...}
27"""
28 helpDescription = """
29'%prog' uses git rebase to move local changes in the current topic branch to
30the HEAD of the upstream history, useful when you have made commits in a topic
31branch but need to incorporate new upstream changes "underneath" them.
32"""
33
34 def _Options(self, p):
35 p.add_option('-i', '--interactive',
36 dest="interactive", action="store_true",
37 help="interactive rebase (single project only)")
38
Shawn O. Pearcea22f99a2010-07-15 17:40:41 -070039 p.add_option('-f', '--force-rebase',
40 dest='force_rebase', action='store_true',
41 help='Pass --force-rebase to git rebase')
42 p.add_option('--no-ff',
43 dest='no_ff', action='store_true',
44 help='Pass --no-ff to git rebase')
45 p.add_option('-q', '--quiet',
46 dest='quiet', action='store_true',
47 help='Pass --quiet to git rebase')
48 p.add_option('--autosquash',
49 dest='autosquash', action='store_true',
50 help='Pass --autosquash to git rebase')
51 p.add_option('--whitespace',
52 dest='whitespace', action='store', metavar='WS',
53 help='Pass --whitespace to git rebase')
Joe Hansche5e572342012-03-05 11:41:19 -050054 p.add_option('--auto-stash',
55 dest='auto_stash', action='store_true',
56 help='Stash local modifications before starting')
Xiaohui Chen0b4cb322016-01-27 14:33:51 -080057 p.add_option('-m', '--onto-manifest',
58 dest='onto_manifest', action='store_true',
59 help='Rebase onto the manifest version instead of upstream '
60 'HEAD. This helps to make sure the local tree stays '
61 'consistent if you previously synced to a manifest.')
Shawn O. Pearcea22f99a2010-07-15 17:40:41 -070062
Daniel Sandler9e426aa2010-04-01 10:42:33 -040063 def Execute(self, opt, args):
David Pursehouse8a68ff92012-09-24 12:15:13 +090064 all_projects = self.GetProjects(args)
65 one_project = len(all_projects) == 1
Daniel Sandler9e426aa2010-04-01 10:42:33 -040066
67 if opt.interactive and not one_project:
Sarah Owenscecd1d82012-11-01 22:59:27 -070068 print('error: interactive rebase not supported with multiple projects',
69 file=sys.stderr)
David James8d201162013-10-11 17:03:19 -070070 if len(args) == 1:
71 print('note: project %s is mapped to more than one path' % (args[0],),
72 file=sys.stderr)
Daniel Sandler9e426aa2010-04-01 10:42:33 -040073 return -1
74
David Pursehouse8a68ff92012-09-24 12:15:13 +090075 for project in all_projects:
Daniel Sandler9e426aa2010-04-01 10:42:33 -040076 cb = project.CurrentBranch
77 if not cb:
78 if one_project:
David Pursehouse2f9e7e42013-03-05 17:26:46 +090079 print("error: project %s has a detached HEAD" % project.relpath,
Sarah Owenscecd1d82012-11-01 22:59:27 -070080 file=sys.stderr)
Daniel Sandler9e426aa2010-04-01 10:42:33 -040081 return -1
82 # ignore branches with detatched HEADs
83 continue
84
85 upbranch = project.GetBranch(cb)
86 if not upbranch.LocalMerge:
87 if one_project:
Sarah Owenscecd1d82012-11-01 22:59:27 -070088 print("error: project %s does not track any remote branches"
89 % project.relpath, file=sys.stderr)
Daniel Sandler9e426aa2010-04-01 10:42:33 -040090 return -1
91 # ignore branches without remotes
92 continue
93
Daniel Sandler9e426aa2010-04-01 10:42:33 -040094 args = ["rebase"]
Shawn O. Pearcea22f99a2010-07-15 17:40:41 -070095
96 if opt.whitespace:
97 args.append('--whitespace=%s' % opt.whitespace)
98
99 if opt.quiet:
100 args.append('--quiet')
101
102 if opt.force_rebase:
103 args.append('--force-rebase')
104
105 if opt.no_ff:
106 args.append('--no-ff')
107
108 if opt.autosquash:
109 args.append('--autosquash')
110
Daniel Sandler9e426aa2010-04-01 10:42:33 -0400111 if opt.interactive:
112 args.append("-i")
Daniel Sandler9e426aa2010-04-01 10:42:33 -0400113
Xiaohui Chen0b4cb322016-01-27 14:33:51 -0800114 if opt.onto_manifest:
115 args.append('--onto')
116 args.append(project.revisionExpr)
117
Shawn O. Pearcea22f99a2010-07-15 17:40:41 -0700118 args.append(upbranch.LocalMerge)
119
Sarah Owenscecd1d82012-11-01 22:59:27 -0700120 print('# %s: rebasing %s -> %s'
121 % (project.relpath, cb, upbranch.LocalMerge), file=sys.stderr)
Shawn O. Pearcea22f99a2010-07-15 17:40:41 -0700122
Joe Hansche5e572342012-03-05 11:41:19 -0500123 needs_stash = False
124 if opt.auto_stash:
125 stash_args = ["update-index", "--refresh", "-q"]
126
127 if GitCommand(project, stash_args).Wait() != 0:
128 needs_stash = True
129 # Dirty index, requires stash...
130 stash_args = ["stash"]
131
132 if GitCommand(project, stash_args).Wait() != 0:
133 return -1
134
Daniel Sandler9e426aa2010-04-01 10:42:33 -0400135 if GitCommand(project, args).Wait() != 0:
136 return -1
Joe Hansche5e572342012-03-05 11:41:19 -0500137
138 if needs_stash:
139 stash_args.append('pop')
140 stash_args.append('--quiet')
141 if GitCommand(project, stash_args).Wait() != 0:
142 return -1