@proggarapsody/bitbottle 1.54.0 → 1.56.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 +25 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -92,7 +92,7 @@ Tokens are intentionally stripped from `hosts.yml` on every save. If you have an
|
|
|
92
92
|
| `deploy-key` | `list` `add` `delete` |
|
|
93
93
|
| `branch-rule` | `list` `add` `delete` _(Cloud only)_ |
|
|
94
94
|
| `ssh-key` | `list` `add` `delete` _(Cloud only)_ |
|
|
95
|
-
| `commit` | `log` `view` `status` `comment {list\|add\|edit\|delete}` |
|
|
95
|
+
| `commit` | `log` `view` `status` `files` `comment {list\|add\|edit\|delete}` |
|
|
96
96
|
| `pipeline` | `list` `view` `run` _(Cloud only)_ |
|
|
97
97
|
| `deployment` | `list` `view` _(Cloud only)_ |
|
|
98
98
|
| `environment` | `list` `create` `delete` _(Cloud only)_ |
|
|
@@ -164,6 +164,10 @@ bitbottle pr review 42 --comment --inline pkg/foo.go:10-15:extract helper # comm
|
|
|
164
164
|
bitbottle pr activity 42
|
|
165
165
|
bitbottle pr activity 42 --limit 20
|
|
166
166
|
bitbottle pr activity 42 --json type,actor,createdAt,detail
|
|
167
|
+
|
|
168
|
+
# PR commits
|
|
169
|
+
bitbottle pr commits 42
|
|
170
|
+
bitbottle pr commits 42 --json hash,message,author,date
|
|
167
171
|
```
|
|
168
172
|
|
|
169
173
|
### Repos & Branches
|
|
@@ -548,6 +552,26 @@ bitbottle --hostname git.example.com perms project list MYPROJ --jq '.[] | selec
|
|
|
548
552
|
If a grant call would **downgrade** an existing permission (e.g. ADMIN → READ),
|
|
549
553
|
`grant` prompts for confirmation on a TTY. Pass `--force` to skip the prompt.
|
|
550
554
|
|
|
555
|
+
### Commit Files
|
|
556
|
+
|
|
557
|
+
List files added, modified, or deleted in a specific commit. Both Bitbucket
|
|
558
|
+
Cloud and Server / Data Center are supported.
|
|
559
|
+
|
|
560
|
+
```bash
|
|
561
|
+
# List files changed in a commit (repo from git remote)
|
|
562
|
+
bitbottle commit files abc1234
|
|
563
|
+
|
|
564
|
+
# Explicit repo
|
|
565
|
+
bitbottle commit files abc1234 MYPROJ/my-service
|
|
566
|
+
|
|
567
|
+
# Structured output
|
|
568
|
+
bitbottle commit files abc1234 MYPROJ/my-service --json
|
|
569
|
+
bitbottle commit files abc1234 MYPROJ/my-service --jq '.[].path'
|
|
570
|
+
```
|
|
571
|
+
|
|
572
|
+
Output columns: `STATUS`, `PATH`, `+ADDITIONS`, `-DELETIONS`.
|
|
573
|
+
Line counts are not available on Bitbucket Server / Data Center (always 0).
|
|
574
|
+
|
|
551
575
|
### Commit Comments
|
|
552
576
|
|
|
553
577
|
Add and manage review-style comments on individual commits. Both Bitbucket
|