diff options
Diffstat (limited to 'subcmds/rebase.py')
-rw-r--r-- | subcmds/rebase.py | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/subcmds/rebase.py b/subcmds/rebase.py new file mode 100644 index 00000000..e341296d --- /dev/null +++ b/subcmds/rebase.py | |||
@@ -0,0 +1,107 @@ | |||
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 | |||
16 | import sys | ||
17 | |||
18 | from command import Command | ||
19 | from git_command import GitCommand | ||
20 | from git_refs import GitRefs, HEAD, R_HEADS, R_TAGS, R_PUB | ||
21 | from error import GitError | ||
22 | |||
23 | class Rebase(Command): | ||
24 | common = True | ||
25 | helpSummary = "Rebase local branches on upstream branch" | ||
26 | helpUsage = """ | ||
27 | %prog {[<project>...] | -i <project>...} | ||
28 | """ | ||
29 | helpDescription = """ | ||
30 | '%prog' uses git rebase to move local changes in the current topic branch to | ||
31 | the HEAD of the upstream history, useful when you have made commits in a topic | ||
32 | branch but need to incorporate new upstream changes "underneath" them. | ||
33 | """ | ||
34 | |||
35 | def _Options(self, p): | ||
36 | p.add_option('-i', '--interactive', | ||
37 | dest="interactive", action="store_true", | ||
38 | help="interactive rebase (single project only)") | ||
39 | |||
40 | p.add_option('-f', '--force-rebase', | ||
41 | dest='force_rebase', action='store_true', | ||
42 | help='Pass --force-rebase to git rebase') | ||
43 | p.add_option('--no-ff', | ||
44 | dest='no_ff', action='store_true', | ||
45 | help='Pass --no-ff to git rebase') | ||
46 | p.add_option('-q', '--quiet', | ||
47 | dest='quiet', action='store_true', | ||
48 | help='Pass --quiet to git rebase') | ||
49 | p.add_option('--autosquash', | ||
50 | dest='autosquash', action='store_true', | ||
51 | help='Pass --autosquash to git rebase') | ||
52 | p.add_option('--whitespace', | ||
53 | dest='whitespace', action='store', metavar='WS', | ||
54 | help='Pass --whitespace to git rebase') | ||
55 | |||
56 | def Execute(self, opt, args): | ||
57 | all = self.GetProjects(args) | ||
58 | one_project = len(all) == 1 | ||
59 | |||
60 | if opt.interactive and not one_project: | ||
61 | print >>sys.stderr, 'error: interactive rebase not supported with multiple projects' | ||
62 | return -1 | ||
63 | |||
64 | for project in all: | ||
65 | cb = project.CurrentBranch | ||
66 | if not cb: | ||
67 | if one_project: | ||
68 | print >>sys.stderr, "error: project %s has a detatched HEAD" % project.relpath | ||
69 | return -1 | ||
70 | # ignore branches with detatched HEADs | ||
71 | continue | ||
72 | |||
73 | upbranch = project.GetBranch(cb) | ||
74 | if not upbranch.LocalMerge: | ||
75 | if one_project: | ||
76 | print >>sys.stderr, "error: project %s does not track any remote branches" % project.relpath | ||
77 | return -1 | ||
78 | # ignore branches without remotes | ||
79 | continue | ||
80 | |||
81 | args = ["rebase"] | ||
82 | |||
83 | if opt.whitespace: | ||
84 | args.append('--whitespace=%s' % opt.whitespace) | ||
85 | |||
86 | if opt.quiet: | ||
87 | args.append('--quiet') | ||
88 | |||
89 | if opt.force_rebase: | ||
90 | args.append('--force-rebase') | ||
91 | |||
92 | if opt.no_ff: | ||
93 | args.append('--no-ff') | ||
94 | |||
95 | if opt.autosquash: | ||
96 | args.append('--autosquash') | ||
97 | |||
98 | if opt.interactive: | ||
99 | args.append("-i") | ||
100 | |||
101 | args.append(upbranch.LocalMerge) | ||
102 | |||
103 | print >>sys.stderr, '# %s: rebasing %s -> %s' % \ | ||
104 | (project.relpath, cb, upbranch.LocalMerge) | ||
105 | |||
106 | if GitCommand(project, args).Wait() != 0: | ||
107 | return -1 | ||