Lines Matching refs:split
115 sectionvals = section.split('|')
248 refs = runcmd('git show-ref -s %s' % initialrev, ldir).split('\n')
270 exclude_patterns = repo.get('file_exclude', '').split()
281 file_filter = ' '.join([subdir + '/' + x for x in file_filter.split()])
286 subdir_components = len(subdir.split(os.path.sep)) if subdir else 0
302 for file in files.split('\n'):
333 for rev in since_rev.split():
335 … rev = runcmd('git log --oneline --no-abbrev-commit -n1 %s' % rev, ldir).split()[0]
437 … for start in runcmd('git log --pretty=format:%%H --max-parents=0 %s --' % name).split('\n'):
560 branchlist = actualbranch.split("\n")
562 branches.append(b.strip().split(' ')[-1])
632 components = [arg.split(':')[0] for arg in args[1:]]
636 a = arg.split(':', 1)
709 for path in exclude.split():
779 runcmd('git commit -m'.split() + [msg, relpath])
814 patchfile = line.split()[0]
815 lastrev = line.split()[1]
853 len(runcmd("git show --pretty=format:%%P --no-patch %s" % branch, ldir).split()) > 1:
973 file_include = repo.get('file_filter', '').split()
975 file_exclude = repo.get('file_exclude', '').split()
1048 revs = runcmd("git rev-list %s" % rev_list_args, **largs).split()
1057 … ancestor_revs = runcmd("git rev-list --ancestry-path %s" % rev_list_args, **largs).split()
1094 parents = runcmd("git show --no-patch --pretty=format:%P " + prev, **largs).split()
1113 …("git show --no-patch --pretty=format:%P%x00%an%x00%ae%x00%at%x00%B " + rev, **largs).split(chr(0))
1114 parents = parents.split()
1169 … new_rev = runcmd("git commit-tree".split() + add_p([import_rev(p) for p in parents]) +
1197 new_rev = runcmd("git commit-tree".split() +
1222 … --grep='From .* rev: [a-fA-F0-9][a-fA-F0-9]*' --pretty=format:%H%x00%B%x00 " + head).split(chr(0))
1249 …-no-commit-id --no-renames --name-status -r --raw -z %s %s" % (parent, rev), **largs).split(chr(0))
1260 update.extend(runcmd("git ls-tree -r --name-only -z %s" % rev, **largs).split(chr(0)))
1304 cmd = "git add -f".split() + [os.path.join(dest_dir, x) for x in unquoted_args]
1311 …runcmd("git rm -f --ignore-unmatch".split() + [os.path.join(dest_dir, x) for x in delete], **wargs)