@mattpolzin/harmony 6.2.0 → 6.3.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 +8 -6
- package/harmony +1972 -1792
- package/man/harmony.1 +11 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ Harmony - Harmonize with coworkers around GitHub reviewing
|
|
|
18
18
|
`harmony label {label} [...]` \
|
|
19
19
|
`harmony list [team-slug]` \
|
|
20
20
|
`harmony pr [options]` \
|
|
21
|
-
`harmony quick [options]` \
|
|
21
|
+
`harmony quick [options] [issue-title | #issue-number] [...]` \
|
|
22
22
|
`harmony reflect` \
|
|
23
23
|
`harmony request {team-slug | +user-login} [options]` \
|
|
24
24
|
`harmony rq {team-slug | +user-login} [options]` \
|
|
@@ -383,7 +383,7 @@ Create a pull request that will merge into the hypothetical pre-existing
|
|
|
383
383
|
harmony pr --into release/2_0
|
|
384
384
|
```
|
|
385
385
|
|
|
386
|
-
## `quick [--bugfix] [issue-title] [...]`
|
|
386
|
+
## `quick [--bugfix] [issue-title | #<issue-number>] [...]`
|
|
387
387
|
Helps you create a new GitHub issue and a branch to work on that issue all in
|
|
388
388
|
one go. The branch name will be structured such that if you have GitHub branch
|
|
389
389
|
parsing on then the PR you create for the branch later on will refer to the
|
|
@@ -392,10 +392,12 @@ issue created now.
|
|
|
392
392
|
By default the branch created will be prefixed with `feature` but if you specify
|
|
393
393
|
the `--bugfix` flag then the branch's prefix will be `bugfix`.
|
|
394
394
|
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
395
|
+
If your only argument (possibly in addition to the bugfix flag) is
|
|
396
|
+
`#<issue-number>` for an existing GitHub issue then the new branch will point at
|
|
397
|
+
that existing issue. Otherwise, all additional arguments other than `--bugfix`
|
|
398
|
+
will be used as the issue title. If you don't give any arguments then you will
|
|
399
|
+
be prompted to enter the issue title interactively. You will also be prompted
|
|
400
|
+
for the issue description.
|
|
399
401
|
|
|
400
402
|
## `reflect`
|
|
401
403
|
Show a summary of your review requests and authored pull requests.
|