Daniel Sandler | 9e426aa | 2010-04-01 10:42:33 -0400 | [diff] [blame] | 1 | # |
| 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 Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 16 | from __future__ import print_function |
Daniel Sandler | 9e426aa | 2010-04-01 10:42:33 -0400 | [diff] [blame] | 17 | import sys |
| 18 | |
| 19 | from command import Command |
| 20 | from git_command import GitCommand |
Daniel Sandler | 9e426aa | 2010-04-01 10:42:33 -0400 | [diff] [blame] | 21 | |
| 22 | class 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 |
| 30 | the HEAD of the upstream history, useful when you have made commits in a topic |
| 31 | branch 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. Pearce | a22f99a | 2010-07-15 17:40:41 -0700 | [diff] [blame] | 39 | 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 Hansche | 5e57234 | 2012-03-05 11:41:19 -0500 | [diff] [blame] | 54 | p.add_option('--auto-stash', |
| 55 | dest='auto_stash', action='store_true', |
| 56 | help='Stash local modifications before starting') |
Shawn O. Pearce | a22f99a | 2010-07-15 17:40:41 -0700 | [diff] [blame] | 57 | |
Daniel Sandler | 9e426aa | 2010-04-01 10:42:33 -0400 | [diff] [blame] | 58 | def Execute(self, opt, args): |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 59 | all_projects = self.GetProjects(args) |
| 60 | one_project = len(all_projects) == 1 |
Daniel Sandler | 9e426aa | 2010-04-01 10:42:33 -0400 | [diff] [blame] | 61 | |
| 62 | if opt.interactive and not one_project: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 63 | print('error: interactive rebase not supported with multiple projects', |
| 64 | file=sys.stderr) |
Daniel Sandler | 9e426aa | 2010-04-01 10:42:33 -0400 | [diff] [blame] | 65 | return -1 |
| 66 | |
David Pursehouse | 8a68ff9 | 2012-09-24 12:15:13 +0900 | [diff] [blame] | 67 | for project in all_projects: |
Daniel Sandler | 9e426aa | 2010-04-01 10:42:33 -0400 | [diff] [blame] | 68 | cb = project.CurrentBranch |
| 69 | if not cb: |
| 70 | if one_project: |
David Pursehouse | 2f9e7e4 | 2013-03-05 17:26:46 +0900 | [diff] [blame] | 71 | print("error: project %s has a detached HEAD" % project.relpath, |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 72 | file=sys.stderr) |
Daniel Sandler | 9e426aa | 2010-04-01 10:42:33 -0400 | [diff] [blame] | 73 | return -1 |
| 74 | # ignore branches with detatched HEADs |
| 75 | continue |
| 76 | |
| 77 | upbranch = project.GetBranch(cb) |
| 78 | if not upbranch.LocalMerge: |
| 79 | if one_project: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 80 | print("error: project %s does not track any remote branches" |
| 81 | % project.relpath, file=sys.stderr) |
Daniel Sandler | 9e426aa | 2010-04-01 10:42:33 -0400 | [diff] [blame] | 82 | return -1 |
| 83 | # ignore branches without remotes |
| 84 | continue |
| 85 | |
Daniel Sandler | 9e426aa | 2010-04-01 10:42:33 -0400 | [diff] [blame] | 86 | args = ["rebase"] |
Shawn O. Pearce | a22f99a | 2010-07-15 17:40:41 -0700 | [diff] [blame] | 87 | |
| 88 | if opt.whitespace: |
| 89 | args.append('--whitespace=%s' % opt.whitespace) |
| 90 | |
| 91 | if opt.quiet: |
| 92 | args.append('--quiet') |
| 93 | |
| 94 | if opt.force_rebase: |
| 95 | args.append('--force-rebase') |
| 96 | |
| 97 | if opt.no_ff: |
| 98 | args.append('--no-ff') |
| 99 | |
| 100 | if opt.autosquash: |
| 101 | args.append('--autosquash') |
| 102 | |
Daniel Sandler | 9e426aa | 2010-04-01 10:42:33 -0400 | [diff] [blame] | 103 | if opt.interactive: |
| 104 | args.append("-i") |
Daniel Sandler | 9e426aa | 2010-04-01 10:42:33 -0400 | [diff] [blame] | 105 | |
Shawn O. Pearce | a22f99a | 2010-07-15 17:40:41 -0700 | [diff] [blame] | 106 | args.append(upbranch.LocalMerge) |
| 107 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 108 | print('# %s: rebasing %s -> %s' |
| 109 | % (project.relpath, cb, upbranch.LocalMerge), file=sys.stderr) |
Shawn O. Pearce | a22f99a | 2010-07-15 17:40:41 -0700 | [diff] [blame] | 110 | |
Joe Hansche | 5e57234 | 2012-03-05 11:41:19 -0500 | [diff] [blame] | 111 | needs_stash = False |
| 112 | if opt.auto_stash: |
| 113 | stash_args = ["update-index", "--refresh", "-q"] |
| 114 | |
| 115 | if GitCommand(project, stash_args).Wait() != 0: |
| 116 | needs_stash = True |
| 117 | # Dirty index, requires stash... |
| 118 | stash_args = ["stash"] |
| 119 | |
| 120 | if GitCommand(project, stash_args).Wait() != 0: |
| 121 | return -1 |
| 122 | |
Daniel Sandler | 9e426aa | 2010-04-01 10:42:33 -0400 | [diff] [blame] | 123 | if GitCommand(project, args).Wait() != 0: |
| 124 | return -1 |
Joe Hansche | 5e57234 | 2012-03-05 11:41:19 -0500 | [diff] [blame] | 125 | |
| 126 | if needs_stash: |
| 127 | stash_args.append('pop') |
| 128 | stash_args.append('--quiet') |
| 129 | if GitCommand(project, stash_args).Wait() != 0: |
| 130 | return -1 |