rsmultigit 0.1.16

Manage multiple git repositories at once
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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
# Command Reference

## Global Flags

These flags can be used with any subcommand and must appear before the subcommand name:

| Flag | Description |
|------|-------------|
| `--terse` | Terse output — suppress project headers |
| `--stats` | Print match count as `N/total` after count commands |
| `--no-output` | Suppress command output (only print project names) |
| `--print-not` | Invert selection — print repos that do NOT match |
| `--git-verbose` | Pass `--verbose` to git commands |
| `--git-quiet` | Pass `--quiet` to git commands |
| `--no-sort` | Do not sort the project list |
| `--glob <PATTERN>` | Glob pattern for project discovery (default: `*/*`) |
| `--no-glob` | Disable glob — check immediate subdirectories only |
| `--folders <LIST>` | Comma-separated list of folders to operate on |
| `--no-stop` | Do not stop on errors — continue to next project |
| `--short-circuit` | Stop at the first negative result. Off by default; honoured by `check-same` |
| `--no-print-no-projects` | Suppress the "no projects found" message |

Example:

```bash
rsmultigit --stats --terse count-dirty       # Just print "3/50"
rsmultigit --no-stop pull                    # Pull all, skip failures
rsmultigit --short-circuit check-same        # Stop at the first broken rule
rsmultigit --glob "python-*" status          # Only match python-* dirs
rsmultigit --folders a,b,c list-repos     # Operate on specific folders
```

## Count Commands

These commands test each discovered repo and print matching projects.

### `rsmultigit count-dirty`

Count repositories with dirty working trees (modified, deleted, or staged files). Uses libgit2 for fast native inspection.

```bash
rsmultigit count-dirty
rsmultigit --stats count-dirty               # Print count as N/total
rsmultigit --terse --stats count-dirty       # Print only the count line
```

### `rsmultigit untracked`

Count repositories that have untracked files.

```bash
rsmultigit untracked
rsmultigit --stats untracked
```

### `rsmultigit synchronized`

Count repositories that are not synchronized with their upstream (ahead or behind `origin/<branch>`).

```bash
rsmultigit synchronized
rsmultigit --stats synchronized
rsmultigit --print-not synchronized          # Show repos that ARE synchronized
```

## Status Commands

These commands inspect each repo and print output only for repos that have data.

### `rsmultigit status`

Show repositories that need attention, with a one-line summary of each repo's
situation: counts of conflicted, staged, modified, deleted, and untracked
files, plus ahead/behind counts when the branch has diverged from `origin`
(e.g. commits that have not been pushed yet). Clean, in-sync repos are
skipped. Pass `--verbose` for the full per-file `git status -s` output
instead of the summary.

```bash
rsmultigit status
# [~/git/myrepo]
# 2 modified, 1 untracked, ahead 1
rsmultigit --verbose status
```

### `rsmultigit dirty`

Show `git diff --stat` output for repositories with modifications.

```bash
rsmultigit dirty
```

### `rsmultigit list-repos`

List all discovered projects.

```bash
rsmultigit list-repos
```

### `rsmultigit age`

Show the age of the last commit for each repo as a human-readable relative date.

```bash
rsmultigit age
```

### `rsmultigit authors`

Show unique commit authors for each repo, sorted by number of commits.

```bash
rsmultigit authors
```

### `rsmultigit config <KEY>`

Show a git config value across all repos. Repos where the key is not set are skipped.

```bash
rsmultigit config user.email
rsmultigit config remote.origin.url
```

### `rsmultigit size`

Show the size of the `.git` directory for each repo. Useful for finding bloated repos.

```bash
rsmultigit size
```

### `rsmultigit last-tag`

Show the most recent tag for each repo. Repos without tags are skipped.

```bash
rsmultigit last-tag
```

## Action Commands

These commands run an action in each project directory.

### `rsmultigit branch-local`

Show local branches for each repo.

```bash
rsmultigit branch-local
```

### `rsmultigit branch-remote`

Show remote branches for each repo.

```bash
rsmultigit branch-remote
```

### `rsmultigit branch-github`

Show the GitHub default branch for each repo (requires `gh` CLI).

```bash
rsmultigit branch-github
```

### `rsmultigit pull`

Pull the current branch from origin.

```bash
rsmultigit pull
rsmultigit pull --quiet
```

### `rsmultigit push`

Push the current branch to origin.

```bash
rsmultigit push
```

### `rsmultigit fetch`

Fetch from origin without merging.

```bash
rsmultigit fetch
```

### `rsmultigit stash push`

Stash working-tree changes in each repo.

```bash
rsmultigit stash push
```

### `rsmultigit stash pop`

Pop the most recent stash in each repo.

```bash
rsmultigit stash pop
```

### `rsmultigit reset hard|soft|mixed`

Reset HEAD across all repos.

```bash
rsmultigit reset hard       # Discard all changes
rsmultigit reset soft       # Keep changes staged
rsmultigit reset mixed      # Unstage changes (default git behavior)
```

### `rsmultigit log`

Show recent commits for each repo.

```bash
rsmultigit log              # Show last 10 commits
rsmultigit log -n 5         # Show last 5 commits
```

### `rsmultigit tag local`

List local tags for each repo.

```bash
rsmultigit tag local
```

### `rsmultigit tag remote`

List remote tags for each repo.

```bash
rsmultigit tag remote
```

### `rsmultigit tag has-local`

Show repos that have local tags (prints only the project header).

```bash
rsmultigit tag has-local
```

### `rsmultigit tag has-remote`

Show repos that have remote tags (prints only the project header).

```bash
rsmultigit tag has-remote
```

### `rsmultigit remote`

Show remote URLs for each repo.

```bash
rsmultigit remote
```

### `rsmultigit prune`

Prune stale remote-tracking branches (`git remote prune origin`).

```bash
rsmultigit prune
```

### `rsmultigit gc`

Run git garbage collection on each repo.

```bash
rsmultigit gc
```

### `rsmultigit checkout <BRANCH>`

Checkout a branch across all repos.

```bash
rsmultigit checkout main
rsmultigit checkout develop
```

### `rsmultigit commit -m <MESSAGE>`

Stage all changes and commit across all repos with a shared message.

```bash
rsmultigit commit -m "bump version"
```

### `rsmultigit submodule-update`

Update submodules recursively (`git submodule update --init --recursive`).

```bash
rsmultigit submodule-update
```

### `rsmultigit blame <FILE>`

Run `git blame` on a specific file across all repos. Repos where the file does not exist are skipped.

```bash
rsmultigit blame README.md
rsmultigit blame Makefile
```

### `rsmultigit clean-hard`

Hard-clean each repository with `git clean -ffxd`. **Warning:** this removes all untracked and ignored files.

```bash
rsmultigit clean-hard
```

### `rsmultigit diff`

Show `git diff` for each repository.

```bash
rsmultigit diff
```

### `rsmultigit grep <REGEXP>`

Grep across all repositories. Output lines are prefixed with the project name.

```bash
rsmultigit grep "TODO"
rsmultigit grep --files "TODO"               # Only show filenames
```

### `rsmultigit run <COMMAND...>` (alias: `rsmultigit exec`)

Run an arbitrary command across all repositories.

```bash
rsmultigit run touch marker.txt
rsmultigit run "echo hello > greeting.txt"
rsmultigit exec cargo check
```

## Build Commands

These commands run build tools in each project directory. Projects with a `.disable` file are skipped.

### `rsmultigit build-bootstrap`

Run `python bootstrap.py` in each project.

### `rsmultigit build-pydmt`

Run `pydmt build` in each project.

### `rsmultigit build-make`

Run `make` in each project.

### `rsmultigit build-venv-make`

Run `make` inside the project's virtualenv (`.venv/bin/make`).

### `rsmultigit build-venv-pydmt`

Run `pydmt build` inside the project's virtualenv.

### `rsmultigit build-pydmt-build-venv`

Run `pydmt build_venv` in each project.

### `rsmultigit build-rsconstruct`

Run `rsconstruct build` on projects that have an `rsconstruct.toml` file. Projects without `rsconstruct.toml` are skipped.

```bash
rsmultigit build-rsconstruct
```

## Utility Commands

### `rsmultigit version`

Print detailed version information including git commit, branch, dirty status, and Rust compiler version.

```bash
rsmultigit version
```

Short version via flag:

```bash
rsmultigit --version
```