Lines Matching refs:path
46 path = project.get('path', project.get('name'))
47 path = os.path.abspath(os.path.join(source_tree, path))
51 if not os.path.exists(path):
54 projects[name] = path
220 for name, path in projects.iteritems():
224 filtered[name] = path
316 def find_root_commits_in_path(path): argument
318 print('Analyzing history of ' + path)
319 rev_list = git(['-C', path, 'rev-list', '--max-parents=0', 'HEAD'])
326 for name, path in projects.iteritems():
327 for root in find_root_commits_in_path(path):
331 'path': path,
347 path = project['downstream_path']
349 commits = git_commits_not_upstreamed.find('FETCH_HEAD', 'HEAD', path)
353 author = git(['-C', path, 'show', '--no-patch', '--format=%ae', commit])
355 subject = git(['-C', path, 'show', '--no-patch', '--format=%s', commit])
514 upstream_source_tree = os.path.abspath(args.upstream_path)
515 downstream_source_tree = os.path.abspath(args.downstream_path)
516 project_output_file = os.path.abspath(args.project_output_file)
517 commit_output_file = os.path.abspath(args.commit_output_file)
520 exclusions_file = os.path.abspath(args.exclusions_file)