Lines Matching defs:git
23 "url" : "https://chromium.googlesource.com/v8/v8.git",
49 def git(args):
50 # shell=True needed on Windows to resolve git.bat.
52 "git " + args, cwd=v8_path, shell=True).strip()
54 expected_git_dir = os.path.join(v8_path, ".git")
55 actual_git_dir = git("rev-parse --absolute-git-dir")
57 print("V8 is tracked stand-alone by git.")
59 print("Initializing temporary git repository in v8.")
60 git("init")
61 git("config user.name \"Ada Lovelace\"")
62 git("config user.email ada@lovela.ce")
63 git("commit --allow-empty -m init")