| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # coding: utf-8 | 2 # coding: utf-8 |
| 3 | 3 |
| 4 # This Source Code Form is subject to the terms of the Mozilla Public | 4 # This Source Code Form is subject to the terms of the Mozilla Public |
| 5 # License, v. 2.0. If a copy of the MPL was not distributed with this | 5 # License, v. 2.0. If a copy of the MPL was not distributed with this |
| 6 # file, You can obtain one at http://mozilla.org/MPL/2.0/. | 6 # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
| 7 | 7 |
| 8 import sys | 8 import sys |
| 9 import os | 9 import os |
| 10 import posixpath | 10 import posixpath |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 90 source = source.rstrip("/") | 90 source = source.rstrip("/") |
| 91 if not source.endswith(".git"): | 91 if not source.endswith(".git"): |
| 92 source += ".git" | 92 source += ".git" |
| 93 subprocess.check_call(["git", "clone", "--quiet", source, target]) | 93 subprocess.check_call(["git", "clone", "--quiet", source, target]) |
| 94 | 94 |
| 95 def get_revision_id(self, repo, rev="HEAD"): | 95 def get_revision_id(self, repo, rev="HEAD"): |
| 96 command = ["git", "rev-parse", "--revs-only", rev + '^{commit}'] | 96 command = ["git", "rev-parse", "--revs-only", rev + '^{commit}'] |
| 97 return subprocess.check_output(command, cwd=repo).strip() | 97 return subprocess.check_output(command, cwd=repo).strip() |
| 98 | 98 |
| 99 def pull(self, repo): | 99 def pull(self, repo): |
| 100 # First perform a fetch so we have a list of remote branch names | 100 # Fetch tracked branches, new tags and the list of available remote branches |
| 101 subprocess.check_call(["git", "fetch", "--quiet"], cwd=repo) | 101 subprocess.check_call(["git", "fetch", "--quiet", "--all", "--tags"], cwd=re po) |
| 102 # Next we need to ensure all remote branches are tracked | 102 # Next we need to ensure all remote branches are tracked |
| 103 newly_tracked = False | |
| 103 remotes = subprocess.check_output(["git", "branch", "--remotes"], cwd=repo) | 104 remotes = subprocess.check_output(["git", "branch", "--remotes"], cwd=repo) |
| 104 for match in re.finditer(r"origin/(\S+)", remotes): | 105 for match in re.finditer(r"^\s*(origin/(\S+))$", remotes, re.M): |
|
Sebastian Noack
2015/05/06 11:23:10
I think we should track all remote branches. Not o
kzar
2015/05/06 11:49:14
As discussed in IRC I would prefer to keep this as
| |
| 105 remote, local = match.group(0), match.group(1) | 106 remote, local = match.groups() |
| 106 if local not in ["HEAD", "master"]: | 107 with open(os.devnull, "wb") as devnull: |
|
Sebastian Noack
2015/05/06 11:23:10
I think we also should explicitly mark "master" as
kzar
2015/05/06 11:49:14
Done.
| |
| 107 with open(os.devnull, "w") as devnull: | 108 if subprocess.call(["git", "branch", "--track", local, remote], |
| 108 subprocess.call(["git", "branch", "--track", local, remote], | 109 cwd=repo, stdout=devnull, stderr=devnull) == 0: |
| 109 cwd=repo, stdout=devnull, stderr=devnull) | 110 newly_tracked = True |
| 110 # Finally we need to actually fetch all the remote branches and tags | 111 # Finally fetch any newly tracked remote branches |
| 111 subprocess.check_call(["git", "fetch", "--quiet", "--all", "--tags"], cwd=re po) | 112 if newly_tracked: |
| 113 subprocess.check_call(["git", "fetch", "--quiet", "origin"], cwd=repo) | |
| 112 | 114 |
| 113 def update(self, repo, rev): | 115 def update(self, repo, rev): |
| 114 subprocess.check_call(["git", "checkout", "--quiet", rev], cwd=repo) | 116 subprocess.check_call(["git", "checkout", "--quiet", rev], cwd=repo) |
| 115 | 117 |
| 116 def ignore(self, target, repo): | 118 def ignore(self, target, repo): |
| 117 module = os.path.relpath(target, repo) | 119 module = os.path.relpath(target, repo) |
| 118 exclude_file = os.path.join(repo, ".git", "info", "exclude") | 120 exclude_file = os.path.join(repo, ".git", "info", "exclude") |
| 119 _ensure_line_exists(exclude_file, module) | 121 _ensure_line_exists(exclude_file, module) |
| 120 | 122 |
| 121 def postprocess_url(self, url): | 123 def postprocess_url(self, url): |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 315 args = parser.parse_args() | 317 args = parser.parse_args() |
| 316 | 318 |
| 317 if args.quiet: | 319 if args.quiet: |
| 318 logging.disable(logging.INFO) | 320 logging.disable(logging.INFO) |
| 319 | 321 |
| 320 repos = args.repos | 322 repos = args.repos |
| 321 if not len(repos): | 323 if not len(repos): |
| 322 repos = [os.path.dirname(__file__)] | 324 repos = [os.path.dirname(__file__)] |
| 323 for repo in repos: | 325 for repo in repos: |
| 324 resolve_deps(repo) | 326 resolve_deps(repo) |
| LEFT | RIGHT |