本文整理汇总了Python中sync.Sync.NAME方法的典型用法代码示例。如果您正苦于以下问题:Python Sync.NAME方法的具体用法?Python Sync.NAME怎么用?Python Sync.NAME使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sync.Sync
的用法示例。
在下文中一共展示了Sync.NAME方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Execute
# 需要导入模块: from sync import Sync [as 别名]
# 或者: from sync.Sync import NAME [as 别名]
def Execute(self, opt, args):
if os.path.exists(os.path.join(self.repodir, "projects")):
print >>sys.stderr, "this working directory has already been cloned into. exiting."
sys.exit(1)
#run Sync to clone the repos into the tree the way Repo expects them
sync_cmd = Sync()
sync_cmd.NAME = 'sync'
sync_cmd.manifest = self.manifest
sync_cmd.repodir = self.repodir
argv = sys.argv
argv = argv[argv.index('--')+2:]
newopts, newargs = sync_cmd.OptionParser.parse_args(argv)
sync_cmd.Execute(newopts, newargs)
#checkout master everywhere
for project in self.GetProjects(''):
print >>sys.stdout, "%s:" % project.name
out = project.work_git.checkout("-t", "-b", "master", "remotes/origin/master")
print >>sys.stdout, out
print >>sys.stdout