MCPcopy Create free account
hub / github.com/git/git / __init__

Method __init__

git-p4.py:4270–4277  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

4268
4269class 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()

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected