(self)
| 4268 | |
| 4269 | class P4Rebase(Command): |
| 4270 | def __init__(self): |
| 4271 | Command.__init__(self) |
| 4272 | self.options = [ |
| 4273 | optparse.make_option("--import-labels", dest="importLabels", action="store_true"), |
| 4274 | ] |
| 4275 | self.importLabels = False |
| 4276 | self.description = ("Fetches the latest revision from perforce and " |
| 4277 | + "rebases the current work (branch) against it") |
| 4278 | |
| 4279 | def run(self, args): |
| 4280 | sync = P4Sync() |