patchy-cli 0.0.25 → 0.0.26
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 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -271,9 +271,11 @@ patchy repo reset [--base-revision] [--target-repo]
|
|
|
271
271
|
Clone a repository into a subdirectory of `clones_dir` and checkout `base_revision`. The target directory is derived from the repo name.
|
|
272
272
|
|
|
273
273
|
```sh
|
|
274
|
-
patchy repo clone [--source-repo] [--clones-dir] [--base-revision]
|
|
274
|
+
patchy repo clone [--source-repo] [--clones-dir] [--base-revision] [--yes]
|
|
275
275
|
```
|
|
276
276
|
|
|
277
|
+
Use `--yes` to skip confirmation prompts and automatically update `patchy.json` with the new target directory.
|
|
278
|
+
|
|
277
279
|
---
|
|
278
280
|
|
|
279
281
|
### `patchy base [revision]`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "patchy-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.26",
|
|
4
4
|
"description": "A CLI tool for managing Git patch workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -67,11 +67,11 @@
|
|
|
67
67
|
"url": "https://github.com/richardgill/patchy"
|
|
68
68
|
},
|
|
69
69
|
"optionalDependencies": {
|
|
70
|
-
"patchy-cli-linux-x64": "0.0.
|
|
71
|
-
"patchy-cli-linux-arm64": "0.0.
|
|
72
|
-
"patchy-cli-darwin-x64": "0.0.
|
|
73
|
-
"patchy-cli-darwin-arm64": "0.0.
|
|
74
|
-
"patchy-cli-windows-x64": "0.0.
|
|
70
|
+
"patchy-cli-linux-x64": "0.0.26",
|
|
71
|
+
"patchy-cli-linux-arm64": "0.0.26",
|
|
72
|
+
"patchy-cli-darwin-x64": "0.0.26",
|
|
73
|
+
"patchy-cli-darwin-arm64": "0.0.26",
|
|
74
|
+
"patchy-cli-windows-x64": "0.0.26"
|
|
75
75
|
},
|
|
76
76
|
"publishConfig": {
|
|
77
77
|
"access": "public"
|