Lines Matching refs:git_root
120 def upload_branch(git_root, git_branch_name): argument
124 check_call(["repo", "upload", "-t", "--br=" + git_branch_name, git_root])
127 def remove_files(git_root, subpaths, stage_removals): argument
130 check_call(["git", "rm", "-qrf", "--ignore-unmatch"] + subpaths, cwd=git_root)
133 check_call(["rm", "-rf"] + subpaths, cwd=git_root)
136 def commit(git_root, prebuilt_descr, branch, target, build, add_paths, bug_number): argument
138 check_call(["git", "add"] + add_paths, cwd=git_root)
161 "git commit -F " + msg_path, shell=True, cwd=git_root)
278 for git_root, subpaths in install_paths_per_root.items():
279 remove_files(git_root, subpaths, not args.skip_cls)
285 for git_root, subpaths in install_paths_per_root.items():
286 target = args.sdk_target if git_root == SDK_PATH else args.module_target
287 commit(git_root, PREBUILT_DESCR, args.branch, target, args.build, subpaths,
293 for git_root in install_paths_per_root:
294 upload_branch(git_root, git_branch_name)