Home | History | Annotate | Download | only in scripts

Lines Matching refs:Git

42 def Git(args):
43 # Needs shell=True on Windows due to git.bat in depot_tools.
44 subprocess.check_call(["git"] + args, shell=is_win)
59 # Needs shell=True on Windows due to git.bat in depot_tools.
61 ["git", "rev-parse", "origin/master"], shell=is_win).strip()
67 Git(["checkout", "-b", "clang-{}-{}".format(
69 Git(["add", UPDATE_PY_PATH])
72 Git(["commit", "-m", "Roll clang {}:{}.\n\n{}".format(
75 Git(["cl", "upload"])
76 Git(["cl", "try", "-b", "linux_upload_clang", "-r", git_revision])
77 Git(["cl", "try", "-b", "mac_upload_clang", "-r", git_revision])
78 Git(["cl", "try", "-b", "win_upload_clang", "-r", git_revision])