Lines Matching full:url
5 1. Downloads a repo source tree with specified manifest URL, branch
36 parser.add_argument("-u", "--manifest-url",
37 help="manifest url",
42 parser.add_argument("-r", "--upstream-manifest-url",
43 help="upstream manifest url",
62 def repo_init(url, rev, workspace): argument
63 """Repo init with specific url and rev.
66 url: manifest url
80 print("repo init:\n url: %s\n rev: %s\n workspace: %s" %
81 (url, rev, workspace))
83 subprocess.check_output("repo init --manifest-url=%s --manifest-branch=%s" %
84 (url, rev), cwd=workspace, shell=True)
128 def repo_sync_specific_release(url, branch, tag, workspace, ignore_error): argument
136 repo_init(url, branch, workspace)
142 repo_init(url, rev, workspace)