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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 # Fetch tracked branches, new tags and the list of available remote branches |
101 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 | 102 # Next we need to ensure all remote branches are tracked |
103 newly_tracked = False | 103 newly_tracked = False |
104 remotes = subprocess.check_output(["git", "branch", "--remotes"], cwd=repo) | 104 remotes = subprocess.check_output(["git", "branch", "--remotes"], cwd=repo) |
105 for match in re.finditer(r"(?:^|\s)(origin/(\S+))", remotes): | 105 for match in re.finditer(r"^\s*(origin/(\S+))$", remotes, re.M): |
Sebastian Noack
2015/05/06 14:45:12
I just realized that this regexp will find the bra
kzar
2015/05/06 15:11:13
Oh yea, also I realised if we check for the end of
Sebastian Noack
2015/05/06 15:17:56
Yeah, realized that as well, but slightly preferre
| |
106 remote, local = match.groups() | 106 remote, local = match.groups() |
107 with open(os.devnull, "wb") as devnull: | 107 with open(os.devnull, "wb") as devnull: |
108 if subprocess.call(["git", "branch", "--track", local, remote], | 108 if subprocess.call(["git", "branch", "--track", local, remote], |
109 cwd=repo, stdout=devnull, stderr=devnull) == 0: | 109 cwd=repo, stdout=devnull, stderr=devnull) == 0: |
110 newly_tracked = True | 110 newly_tracked = True |
111 # Finally fetch any newly tracked remote branches | 111 # Finally fetch any newly tracked remote branches |
112 if newly_tracked: | 112 if newly_tracked: |
113 subprocess.check_call(["git", "fetch", "--quiet", "origin"], cwd=repo) | 113 subprocess.check_call(["git", "fetch", "--quiet", "origin"], cwd=repo) |
114 | 114 |
115 def update(self, repo, rev): | 115 def update(self, repo, rev): |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
317 args = parser.parse_args() | 317 args = parser.parse_args() |
318 | 318 |
319 if args.quiet: | 319 if args.quiet: |
320 logging.disable(logging.INFO) | 320 logging.disable(logging.INFO) |
321 | 321 |
322 repos = args.repos | 322 repos = args.repos |
323 if not len(repos): | 323 if not len(repos): |
324 repos = [os.path.dirname(__file__)] | 324 repos = [os.path.dirname(__file__)] |
325 for repo in repos: | 325 for repo in repos: |
326 resolve_deps(repo) | 326 resolve_deps(repo) |
LEFT | RIGHT |