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
71 print("repo init:\n url: %s\n rev: %s\n workspace: %s" %
72 (url, rev, workspace))
74 subprocess.check_output("repo init --manifest-url=%s --manifest-branch=%s" %
75 (url, rev), cwd=workspace, shell=True)
119 def repo_sync_specific_release(url, branch, tag, workspace, ignore_error): argument
127 repo_init(url, branch, workspace)
133 repo_init(url, rev, workspace)