当前位置: 首页>>代码示例>>Python>>正文


Python versioncontrol.Branch类代码示例

本文整理汇总了Python中jhbuild.versioncontrol.Branch的典型用法代码示例。如果您正苦于以下问题:Python Branch类的具体用法?Python Branch怎么用?Python Branch使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了Branch类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

 def __init__(self, repository, module, subdir, checkoutdir=None,
              branch=None, tag=None, unmirrored_module=None):
     Branch.__init__(self, repository, module, checkoutdir)
     self.subdir = subdir
     self.branch = branch
     self.tag = tag
     self.unmirrored_module = unmirrored_module
开发者ID:MarFerMS,项目名称:jhbuild,代码行数:7,代码来源:git.py

示例2: __init__

 def __init__(self, repository, module, version, checkoutdir,
              source_size, source_hash, branch_id, source_subdir=None):
     Branch.__init__(self, repository, module, checkoutdir)
     self.version = version
     self.source_size = source_size
     self.source_hash = source_hash
     self.patches = []
     self.quilt = None
     self.branch_id = branch_id
     self.source_subdir = source_subdir
开发者ID:rpavlik,项目名称:jhbuild-vrjuggler,代码行数:10,代码来源:tarball.py

示例3: checkout

 def checkout(self, buildscript):
     if not inpath("hg", os.environ["PATH"].split(os.pathsep)):
         raise CommandError(_("%s not found") % "hg")
     Branch.checkout(self, buildscript)
开发者ID:aissat,项目名称:jhbuild,代码行数:4,代码来源:hg.py

示例4: __init__

 def __init__(self, repository, module, version, checkoutdir):
     Branch.__init__(self, repository, module, checkoutdir)
     self.version = version
开发者ID:cheatiiit,项目名称:jhbuild-1,代码行数:3,代码来源:system.py

示例5: may_checkout

 def may_checkout(self, buildscript):
     return Branch.may_checkout(self, buildscript)
开发者ID:MarFerMS,项目名称:jhbuild,代码行数:2,代码来源:git.py

示例6: __init__

 def __init__(self, repository, module, module_name, checkoutdir, revision):
     Branch.__init__(self, repository, module, checkoutdir)
     self.module_name = module_name
     self.revision = revision
开发者ID:drayanaindra,项目名称:jhbuild,代码行数:4,代码来源:svn.py

示例7: __init__

 def __init__(self, repository, module_href, checkoutdir, tag, revspec):
     Branch.__init__(self, repository, module_href, checkoutdir)
     self._revspec = None
     self.revspec = (tag, revspec)
开发者ID:cheatiiit,项目名称:jhbuild-1,代码行数:4,代码来源:bzr.py

示例8: __init__

 def __init__(self, repository, version):
     Branch.__init__(self, repository, module = None, checkoutdir = None)
     self.version = version
开发者ID:MarFerMS,项目名称:jhbuild,代码行数:3,代码来源:system.py

示例9: __init__

 def __init__(self, repository, module, checkoutdir, revision,
              update_new_dirs, override_checkoutdir):
     Branch.__init__(self, repository, module, checkoutdir)
     self.revision = revision
     self.update_new_dirs = update_new_dirs
     self.override_checkoutdir = override_checkoutdir
开发者ID:rpavlik,项目名称:jhbuild-vrjuggler,代码行数:6,代码来源:cvs.py

示例10: __init__

 def __init__(self, repository, name, checkoutdir, branch, module=None):
     Branch.__init__(self, repository, branch, checkoutdir)
     self.name = name
     self.branch = branch
     self.mtn_module = module
开发者ID:MarFerMS,项目名称:jhbuild,代码行数:5,代码来源:mtn.py

示例11: checkout

 def checkout(self, buildscript):
     if not inpath('darcs', os.environ['PATH'].split(os.pathsep)):
         raise CommandError(_('%s not found') % 'darcs')
     Branch.checkout(self, buildscript)
     self._fix_permissions()
开发者ID:ylatuya,项目名称:jhbuild,代码行数:5,代码来源:darcs.py


注:本文中的jhbuild.versioncontrol.Branch类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。