-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit-multi
executable file
·334 lines (261 loc) · 11 KB
/
git-multi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
#!/usr/bin/env python3
#
# Copyright 2017 Theodore A. Roth <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import os
import sys
import argparse
import subprocess
import logging
import xml.etree.ElementTree as ET
logging.getLogger(__name__).addHandler(logging.NullHandler())
Description = """
The 'git-multi' script enhances git with a new command: 'multi'. All arguments
not known to 'git-multi' are passed through to the git command run for each repo
found in the directory.
This lets you run a single git command on multiple git repos with a single
command line.
"""
Epilog = """
Some 'git-multi' arguments can mask git command arguments. To work around this,
add a '--' argument after the last 'git-multi' argument and all arguments after
the '--' will be ignored by 'git-multi' and passed directly to git. For example,
to run 'git branch -q' on all repos without triggering 'git multi -q':
$ git multi -- branch -q
To pass '-q' to both 'git-multi' and 'git-branch':
$ git multi -q -- branch -q
The -r options will override excluded repositories (either in
.gitmulti_ignore or given with -e) allowing git-multi to operate on
them.
"""
class GitMulti:
def __init__(self, argv, logger):
self.log = logger
self.parse_cmd_line(argv)
topdir, repos = self.find_repositories()
for repo in repos:
if not self.opts.repos or repo in self.opts.repos:
os.chdir(topdir)
rc = self.exec_repository(repo)
if rc != 0 and self.opts.exit_on_error:
break
def parse_cmd_line(self, argv):
'''Process the command line arguments.
Allows user to get help with:
git multi -h
Allow user to provide args which bypass git-multi, but only consume the
first instance of '--' so that user can still pass that on to git.
'''
if '--' in argv:
idx = argv.index('--')
multi_args = argv[:idx]
git_args = argv[idx+1:]
else:
multi_args = argv
git_args = []
parser = argparse.ArgumentParser(
description=Description,
epilog=Epilog,
formatter_class=argparse.RawDescriptionHelpFormatter,
)
parser.add_argument('--branch',
action='store_true',
help='Output only the current branch for all repositories.')
parser.add_argument('--branch-verbose',
action='store_true',
help='Verbose branch information (same as --branch, but more verbose)')
parser.add_argument('-B', '--branch-name',
action='store',
help='Show repositories not on specified branch')
parser.add_argument('-c', '--changed',
action='store_true',
help='Execute only if repository not changed.')
parser.add_argument('--debug',
action='store_true',
help='Output git-multi debug information.')
parser.add_argument('-e', '--exclude',
action='append',
dest='excludes',
metavar='REPO',
default=[],
help='Add repo to list of repositories to exclude.')
parser.add_argument('--exit-on-error',
action='store_true',
help='Exit immediately if git command fails')
parser.add_argument('-r', '--repo',
action='append',
dest='repos',
metavar='REPO',
default=[],
help=("Add arg to list of repositories to work on. "
"Can be given multiple times. Each REPO value can be "
"a ':' separated list of repositories."))
parser.add_argument('-q', '--quiet',
action='store_true',
help='If repository unchanged, do not output anything.')
parser.add_argument('gargs', nargs='*')
opts,args = parser.parse_known_args(multi_args)
# Preserve order of arguments going to git by putting args before git_args
git_args = opts.gargs + args + git_args
# Process repositories specified via '-r foo:bar'
repos = []
for repo in opts.repos:
repos.extend(repo.split(':'))
opts.repos = repos
# Process excludes
excludes = []
for repo in opts.excludes:
excludes.extend([p for p in repo.split(':') if p not in opts.repos])
opts.excludes = excludes
if opts.debug:
self.log.setLevel(logging.DEBUG)
else:
self.log.setLevel(logging.INFO)
self.log.debug('OPTS: {}'.format(opts))
self.log.debug('GARGS: {}'.format(git_args))
self.opts = opts
self.git_args = git_args
def exec(self, cmd):
'''Execute an arbitrary command as a subprocess.
'''
p = subprocess.Popen(cmd, stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
bufsize=-1)
out,err = p.communicate()
return p.returncode, out.decode().strip()
def is_changed(self):
'''Check if current repo has any pending changes.
'''
rc,out = self.exec(['git', 'status', '--porcelain'])
merging = os.path.exists(os.path.join('.git', 'MERGE_HEAD'))
return out or merging
def exec_repository(self, repo):
'''Run the requested git commands on a git repository.
'''
os.chdir(repo)
isChanged = self.is_changed()
if not isChanged and self.opts.quiet:
return 0
print('REPO: {}'.format(repo))
if not isChanged and self.opts.changed:
print('\tNot Changed')
return 0
rc,out = self.exec(['git'] + self.git_args)
if rc != 0:
self.log.debug('{}: git cmd return code: {}'.format(repo, rc))
for line in out.split('\n'):
print('\t{}'.format(line))
return rc
def find_file(self, fn):
'''Find given file.
Walks up the path looking for filename (fn).
Returns a tuple of the path to the directory containing the file and the
name of the file if the file was found.
If the file was not found, returns (None, None).
'''
cwd = os.getcwd()
while True:
self.log.debug('CWD [%s]: %s' % (fn, cwd))
if os.path.exists(os.path.join(cwd, fn)):
return (cwd, fn)
if cwd == os.path.sep:
return (None, None)
cwd = os.path.split(cwd)[0]
def get_repos_from_manifest(self, topdir, manifest):
'''Get list of repos from a Google Repo Manifest file.
'''
repos = []
cwd = os.getcwd()
os.chdir(topdir)
tree = ET.parse(manifest)
root = tree.getroot()
for repo in root.iter('project'):
path = repo.attrib.get('path', None)
if not path:
continue
if os.path.isdir(path):
if self.opts.excludes and path in self.opts.excludes:
continue
if os.path.exists(os.path.join(path, '.git')):
repos.append(path)
os.chdir(cwd)
return repos
def get_repos_from_config(self, topdir, config):
'''Get list of repos from a .gitmulti config file.
The file is simply a list of pathes (relative to topdir) of git
repositories (one repo per line).
Comments begin with a '#' character. Blank lines are ignored.
'''
repos = []
cwd = os.getcwd()
os.chdir(topdir)
with open(config) as cfg:
for line in cfg:
path = line.split('#')[0].strip()
if path and os.path.isdir(path):
if self.opts.excludes and path in self.opts.excludes:
continue
if os.path.exists(os.path.join(path, '.git')):
repos.append(path)
os.chdir(cwd)
return repos
def get_repos_from_search(self, topdir):
'''Get list of repos by searching for .git dirrectories.
If no repos are found in the current topdir, the parent of topdir will
be searched recursively until either git repos are found or the root
level is reached.
'''
repos = []
self.log.debug('search -> {}'.format(topdir))
for fn in os.listdir(topdir):
if os.path.isdir(os.path.join(topdir, fn)):
if self.opts.excludes and fn in self.opts.excludes:
continue
if os.path.exists(os.path.join(topdir, fn, '.git')):
repos.append(fn)
if not repos:
if topdir == os.path.sep:
# No repos found and we are at root dir, can't go any further.
return (None, None)
else:
# Try parent directory.
return self.get_repos_from_search(os.path.split(topdir)[0])
return topdir, repos
def find_repositories(self):
'''Find repositories in the current directory or any parent directory.
Repositories are discovered by the following methods (in order of
preference:
* Search for Google Repo `manifest.xml` file.
* Search for `.gitmulti` config file.
* Search for directories with a `.git` subdir.
'''
topdir, cfg = self.find_file(os.path.join('.repo', 'manifest.xml'))
if topdir:
self.log.info('Using google repo manifest file: {}'
.format(os.path.join(topdir, cfg)))
return topdir, self.get_repos_from_manifest(topdir, cfg)
topdir, cfg = self.find_file('.gitmulti')
if topdir:
self.log.info('Using git-multi config file: {}'
.format(os.path.join(topdir, cfg)))
return topdir, self.get_repos_from_config(topdir, cfg)
return self.get_repos_from_search(os.getcwd())
if __name__ == '__main__':
logger = logging.getLogger('GIT_MULTI')
fmtr = logging.Formatter('%(name)s: %(levelname)s: %(message)s')
hndr = logging.StreamHandler()
hndr.setFormatter(fmtr)
logger.addHandler(hndr)
GitMulti(sys.argv[1:], logger)