Lines Matching refs:wargs
963 wargs = {"destdir": wdir, "env": wenv}
1128 runcmd("git rm -q --ignore-unmatch -rf .", **wargs)
1130 runcmd("git checkout -q -f %s ." % new_parent, **wargs)
1134 runcmd("git rm -q --ignore-unmatch -rf .", **wargs)
1137 apply_commit(parent, rev, largs, wargs, dest_dir, file_filter=file_filter)
1140 new_tree = runcmd("git write-tree", **wargs).strip()
1162 old_tree = runcmd("git show -s --pretty=format:%T " + parent_rev, **wargs).strip()
1189 runcmd("git reset --hard", **wargs)
1191 apply_commit(base, rev, wargs, wargs, None)
1196 new_tree = runcmd("git write-tree", **wargs).strip()
1200 **wargs).strip()
1232 def apply_commit(parent, rev, largs, wargs, dest_dir, file_filter=None): argument
1275 target = os.path.join(wargs["destdir"], dest_dir)
1306 runcmd(cmd, **wargs)
1311 …runcmd("git rm -f --ignore-unmatch".split() + [os.path.join(dest_dir, x) for x in delete], **wargs)