Lines Matching refs:checkoutable
29 -def status(directory, checkoutable):
39 - checkoutable = truncate(checkoutable, 40)
40 - sys.stdout.write('%-*s @ %s\n' % (dlen, directory, checkoutable))
47 -def git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
52 @@ -117,8 +121,7 @@ def git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
56 - checkoutable (string) a tag, branch, or commit, suitable for
62 @@ -129,7 +132,12 @@ def git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
76 @@ -145,11 +153,11 @@ def git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
80 - if 0 == subprocess.call([git, 'checkout', '--quiet', checkoutable],
85 - status(directory, checkoutable) # Success.
90 @@ -159,18 +167,24 @@ def git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
94 - subprocess.check_call([git, 'checkout', '--quiet', checkoutable], cwd=directory)
98 - status(directory, checkoutable) # Success.
129 - repo, checkoutable = dependencies[directory].split('@', 1)
138 - (git, repo, checkoutable, relative_directory, verbose))