git-stack-cli 1.9.0 → 1.11.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 +17 -17
- package/dist/cjs/index.cjs +3235 -487
- package/package.json +3 -1
- package/src/app/App.tsx +13 -1
- package/src/app/CherryPickCheck.tsx +3 -3
- package/src/app/DetectInitialPR.tsx +189 -0
- package/src/app/DirtyCheck.tsx +3 -3
- package/src/app/FormatText.tsx +1 -1
- package/src/app/GatherMetadata.tsx +2 -2
- package/src/app/LocalCommitStatus.tsx +2 -3
- package/src/app/LocalMergeRebase.tsx +2 -188
- package/src/app/ManualRebase.tsx +25 -16
- package/src/app/RebaseCheck.tsx +3 -3
- package/src/app/SelectCommitRanges.tsx +2 -2
- package/src/command.ts +6 -0
- package/src/commands/Rebase.tsx +204 -0
- package/src/core/CommitMetadata.ts +1 -24
- package/src/core/GitReviseTodo.test.ts +29 -29
- package/src/core/GitReviseTodo.ts +75 -17
- package/src/core/gs_short_id.ts +5 -0
package/README.md
CHANGED
|
@@ -24,23 +24,23 @@
|
|
|
24
24
|
> ```bash
|
|
25
25
|
> brew install magus/git-stack/git-stack
|
|
26
26
|
> ```
|
|
27
|
-
|
|
28
|
-
<details>
|
|
29
|
-
|
|
30
|
-
<summary>
|
|
31
|
-
npm alternative
|
|
32
|
-
</summary>
|
|
33
|
-
|
|
34
|
-
If you prefer to use **[npm](https://www.npmjs.com/)** you will need to install the **[official Github CLI](https://cli.github.com/)** and **[git revise](https://github.com/mystor/git-revise)** dependencies separarely
|
|
35
|
-
|
|
36
|
-
```bash
|
|
37
|
-
brew install gh
|
|
38
|
-
brew install git-revise
|
|
39
|
-
|
|
40
|
-
npm i -g git-stack-cli
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
</details>
|
|
27
|
+
>
|
|
28
|
+
> <details>
|
|
29
|
+
>
|
|
30
|
+
> <summary>
|
|
31
|
+
> npm alternative
|
|
32
|
+
> </summary>
|
|
33
|
+
>
|
|
34
|
+
> If you prefer to use **[npm](https://www.npmjs.com/)** you will need to install the **[official Github CLI](https://cli.github.com/)** and **[git revise](https://github.com/mystor/git-revise)** dependencies separarely
|
|
35
|
+
>
|
|
36
|
+
> ```bash
|
|
37
|
+
> brew install gh
|
|
38
|
+
> brew install git-revise
|
|
39
|
+
>
|
|
40
|
+
> npm i -g git-stack-cli
|
|
41
|
+
> ```
|
|
42
|
+
>
|
|
43
|
+
> </details>
|
|
44
44
|
|
|
45
45
|
## Usage
|
|
46
46
|
|