@imfelixyeung/git-swarm 0.1.2 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/cli.js +82 -18877
- package/dist/cli.js.map +141 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -48,6 +48,7 @@ git swarm checkout feature/my-branch
|
|
|
48
48
|
| `find-branch <branch>` | Search all repos for a branch by name |
|
|
49
49
|
| `remote` | List remotes for each repo |
|
|
50
50
|
| `exec <command...>` | Run an arbitrary shell command in every repo |
|
|
51
|
+
| `doctor` | Run diagnostics |
|
|
51
52
|
|
|
52
53
|
## Global Options
|
|
53
54
|
|
|
@@ -56,6 +57,7 @@ git swarm checkout feature/my-branch
|
|
|
56
57
|
|---|---|
|
|
57
58
|
| `--where <query>` | Filter repos using a URL query-string syntax |
|
|
58
59
|
| `--parallel <count>` | Run operations in parallel (default: 1) |
|
|
60
|
+
| `--no-progress` | Disable the progress bar (defaults to enabled only when stdout is a TTY) |
|
|
59
61
|
|
|
60
62
|
### Filtering with `--where`
|
|
61
63
|
|