git-stack-cli 2.8.1 → 2.9.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 +6 -0
- package/dist/js/index.js +75 -75
- package/package.json +1 -1
- package/src/app/GatherMetadata.test.tsx +33 -0
- package/src/app/GatherMetadata.tsx +12 -1
- package/src/app/MultiSelect.tsx +10 -5
- package/src/app/PreManualRebase.tsx +39 -16
- package/src/app/SelectCommitRanges.tsx +179 -47
- package/src/app/SyncGithub.tsx +0 -2
- package/src/core/github.tsx +4 -0
package/README.md
CHANGED
|
@@ -67,6 +67,12 @@ Adding commits to a PR is as simple as running `git stack` and adding commits to
|
|
|
67
67
|
1. Use `↑↓` and `space`/`enter` to navigate and assign commits to the PR
|
|
68
68
|
1. Press `s` to sync created PRs and commits to Github
|
|
69
69
|
|
|
70
|
+
### Base PRs on `master` branch
|
|
71
|
+
|
|
72
|
+
By default PRs are stacked based on the order of commits in your branch.
|
|
73
|
+
|
|
74
|
+
To separate a PR and base it on your `master` branch press `m`.
|
|
75
|
+
|
|
70
76
|
### Editing existing commits and pull requests
|
|
71
77
|
|
|
72
78
|
Sometimes you want to add changes to an existing commit or pull request.
|