patchy-cli 0.0.9-pr.177.cbfeddc → 0.0.9-pr.178.15168ab

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 CHANGED
@@ -242,14 +242,6 @@ Hard reset the Git working tree of `target_repo`. Discards local changes.
242
242
  patchy repo reset [--target-repo]
243
243
  ```
244
244
 
245
- ### `patchy repo checkout --ref <git-ref>`
246
-
247
- Check out a specific Git ref (branch, tag, or SHA) in `target_repo`.
248
-
249
- ```sh
250
- patchy repo checkout --ref main [--target-repo]
251
- ```
252
-
253
245
  ### `patchy repo clone`
254
246
 
255
247
  Clone a repository into a subdirectory of `clones_dir`. The target directory is derived from the repo name.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchy-cli",
3
- "version": "0.0.9-pr.177.cbfeddc",
3
+ "version": "0.0.9-pr.178.15168ab",
4
4
  "description": "A CLI tool for managing Git patch workflows.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -65,11 +65,11 @@
65
65
  "url": "https://github.com/richardgill/patchy"
66
66
  },
67
67
  "optionalDependencies": {
68
- "patchy-cli-linux-x64": "0.0.9-pr.177.cbfeddc",
69
- "patchy-cli-linux-arm64": "0.0.9-pr.177.cbfeddc",
70
- "patchy-cli-darwin-x64": "0.0.9-pr.177.cbfeddc",
71
- "patchy-cli-darwin-arm64": "0.0.9-pr.177.cbfeddc",
72
- "patchy-cli-windows-x64": "0.0.9-pr.177.cbfeddc"
68
+ "patchy-cli-linux-x64": "0.0.9-pr.178.15168ab",
69
+ "patchy-cli-linux-arm64": "0.0.9-pr.178.15168ab",
70
+ "patchy-cli-darwin-x64": "0.0.9-pr.178.15168ab",
71
+ "patchy-cli-darwin-arm64": "0.0.9-pr.178.15168ab",
72
+ "patchy-cli-windows-x64": "0.0.9-pr.178.15168ab"
73
73
  },
74
74
  "publishConfig": {
75
75
  "access": "public"
package/schema.json CHANGED
@@ -19,7 +19,10 @@
19
19
  "patch_set": {
20
20
  "type": "string"
21
21
  },
22
- "ref": {
22
+ "base_revision": {
23
+ "type": "string"
24
+ },
25
+ "upstream_branch": {
23
26
  "type": "string"
24
27
  },
25
28
  "verbose": {