Lines Matching refs:checkoutable
102 def status(directory, checkoutable):
107 checkoutable = truncate(checkoutable, 40)
108 sys.stdout.write('%-*s @ %s\n' % (dlen, directory, checkoutable))
111 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
120 checkoutable (string) a tag, branch, or commit, suitable for
148 if 0 == subprocess.call([git, 'checkout', '--quiet', checkoutable],
152 status(directory, checkoutable) # Success.
162 subprocess.check_call([git, 'checkout', '--quiet', checkoutable], cwd=directory)
165 status(directory, checkoutable) # Success.
212 repo, checkoutable = dependencies[directory].split('@', 1)
219 (git, repo, checkoutable, relative_directory, verbose))