@imfelixyeung/git-swarm 0.1.1 → 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 +3 -0
- package/dist/cli.js +82 -17725
- package/dist/cli.js.map +141 -0
- package/package.json +34 -52
package/README.md
CHANGED
|
@@ -43,10 +43,12 @@ git swarm checkout feature/my-branch
|
|
|
43
43
|
| `fetch [--prune]` | Fetch from remotes across all repos |
|
|
44
44
|
| `checkout <branch>` | Switch to a branch across all repos |
|
|
45
45
|
| `diff [--cached] [--stat]` | Show file changes across all repos |
|
|
46
|
+
| `log [rev] [--after <date>] [--before <date>] [--exact-date] [--author]` | Show commit logs across all repos |
|
|
46
47
|
| `grep <pattern>` | Run `git grep` across all repos |
|
|
47
48
|
| `find-branch <branch>` | Search all repos for a branch by name |
|
|
48
49
|
| `remote` | List remotes for each repo |
|
|
49
50
|
| `exec <command...>` | Run an arbitrary shell command in every repo |
|
|
51
|
+
| `doctor` | Run diagnostics |
|
|
50
52
|
|
|
51
53
|
## Global Options
|
|
52
54
|
|
|
@@ -55,6 +57,7 @@ git swarm checkout feature/my-branch
|
|
|
55
57
|
|---|---|
|
|
56
58
|
| `--where <query>` | Filter repos using a URL query-string syntax |
|
|
57
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) |
|
|
58
61
|
|
|
59
62
|
### Filtering with `--where`
|
|
60
63
|
|