patchy-cli 0.0.20-pr.224.cc34fe3 → 0.0.20-pr.224.ef1fabd
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 +10 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -27,7 +27,16 @@ Patchy helps you **generate** and **apply** `.diff` patches for a git repo you'v
|
|
|
27
27
|
|
|
28
28
|
It's opinionated and has [conventions](#patch-file-layout) about how the `.diff` files are stored.
|
|
29
29
|
|
|
30
|
-
##
|
|
30
|
+
## How it works
|
|
31
|
+
|
|
32
|
+
1. `patchy init` - sets up config and clones the upstream repo
|
|
33
|
+
2. Make your changes directly in the cloned repo
|
|
34
|
+
3. `patchy generate` - saves your changes as `.diff` files in `./patches/`
|
|
35
|
+
4. `patchy apply` - applies patches back to the repo
|
|
36
|
+
|
|
37
|
+
Patchy also has commands to: reset your cloned repo, create more clones, switch which SHA or Tag to clone from etc.
|
|
38
|
+
|
|
39
|
+
## Detailed walkthrough
|
|
31
40
|
|
|
32
41
|
Starting a patch-based fork of https://github.com/octocat/spoon-knife.
|
|
33
42
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "patchy-cli",
|
|
3
|
-
"version": "0.0.20-pr.224.
|
|
3
|
+
"version": "0.0.20-pr.224.ef1fabd",
|
|
4
4
|
"description": "A CLI tool for managing Git patch workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
"url": "https://github.com/richardgill/patchy"
|
|
65
65
|
},
|
|
66
66
|
"optionalDependencies": {
|
|
67
|
-
"patchy-cli-linux-x64": "0.0.20-pr.224.
|
|
68
|
-
"patchy-cli-linux-arm64": "0.0.20-pr.224.
|
|
69
|
-
"patchy-cli-darwin-x64": "0.0.20-pr.224.
|
|
70
|
-
"patchy-cli-darwin-arm64": "0.0.20-pr.224.
|
|
71
|
-
"patchy-cli-windows-x64": "0.0.20-pr.224.
|
|
67
|
+
"patchy-cli-linux-x64": "0.0.20-pr.224.ef1fabd",
|
|
68
|
+
"patchy-cli-linux-arm64": "0.0.20-pr.224.ef1fabd",
|
|
69
|
+
"patchy-cli-darwin-x64": "0.0.20-pr.224.ef1fabd",
|
|
70
|
+
"patchy-cli-darwin-arm64": "0.0.20-pr.224.ef1fabd",
|
|
71
|
+
"patchy-cli-windows-x64": "0.0.20-pr.224.ef1fabd"
|
|
72
72
|
},
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|