Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: ensure_dependencies.py

Issue 6068640302497792: Issue 2311 - Track remote Git branches when required (Closed)
Patch Set: Improved comment Created May 6, 2015, 1:31 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 # Fetch tracked branches, new tags and the list of available remote branches
100 subprocess.check_call(["git", "fetch", "--quiet", "--all", "--tags"], cwd=re po) 101 subprocess.check_call(["git", "fetch", "--quiet", "--all", "--tags"], cwd=re po)
102 # Next we need to ensure all remote branches are tracked
103 newly_tracked = False
104 remotes = subprocess.check_output(["git", "branch", "--remotes"], cwd=repo)
105 for match in re.finditer(r"(?:^|\s)(origin/((?!HEAD(?:$|\s))\S+))", remotes) :
Wladimir Palant 2015/05/06 14:27:41 Is HEAD really worth excluding in the regexp? The
Sebastian Noack 2015/05/06 14:31:48 We actually had something like that before. I sugg
kzar 2015/05/06 14:37:31 Yea, I guess we don't need the check at all. Done.
106 remote, local = match.groups()
107 with open(os.devnull, "wb") as devnull:
108 if subprocess.call(["git", "branch", "--track", local, remote],
109 cwd=repo, stdout=devnull, stderr=devnull) == 0:
110 newly_tracked = True
111 # Finally fetch any newly tracked remote branches
112 if newly_tracked:
113 subprocess.check_call(["git", "fetch", "--quiet", "origin"], cwd=repo)
101 114
102 def update(self, repo, rev): 115 def update(self, repo, rev):
103 subprocess.check_call(["git", "checkout", "--quiet", rev], cwd=repo) 116 subprocess.check_call(["git", "checkout", "--quiet", rev], cwd=repo)
104 117
105 def ignore(self, target, repo): 118 def ignore(self, target, repo):
106 module = os.path.relpath(target, repo) 119 module = os.path.relpath(target, repo)
107 exclude_file = os.path.join(repo, ".git", "info", "exclude") 120 exclude_file = os.path.join(repo, ".git", "info", "exclude")
108 _ensure_line_exists(exclude_file, module) 121 _ensure_line_exists(exclude_file, module)
109 122
110 def postprocess_url(self, url): 123 def postprocess_url(self, url):
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 args = parser.parse_args() 317 args = parser.parse_args()
305 318
306 if args.quiet: 319 if args.quiet:
307 logging.disable(logging.INFO) 320 logging.disable(logging.INFO)
308 321
309 repos = args.repos 322 repos = args.repos
310 if not len(repos): 323 if not len(repos):
311 repos = [os.path.dirname(__file__)] 324 repos = [os.path.dirname(__file__)]
312 for repo in repos: 325 for repo in repos:
313 resolve_deps(repo) 326 resolve_deps(repo)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld