@proggarapsody/bitbottle 1.54.0 → 1.55.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 +21 -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)_ |
|
|
@@ -548,6 +548,26 @@ bitbottle --hostname git.example.com perms project list MYPROJ --jq '.[] | selec
|
|
|
548
548
|
If a grant call would **downgrade** an existing permission (e.g. ADMIN → READ),
|
|
549
549
|
`grant` prompts for confirmation on a TTY. Pass `--force` to skip the prompt.
|
|
550
550
|
|
|
551
|
+
### Commit Files
|
|
552
|
+
|
|
553
|
+
List files added, modified, or deleted in a specific commit. Both Bitbucket
|
|
554
|
+
Cloud and Server / Data Center are supported.
|
|
555
|
+
|
|
556
|
+
```bash
|
|
557
|
+
# List files changed in a commit (repo from git remote)
|
|
558
|
+
bitbottle commit files abc1234
|
|
559
|
+
|
|
560
|
+
# Explicit repo
|
|
561
|
+
bitbottle commit files abc1234 MYPROJ/my-service
|
|
562
|
+
|
|
563
|
+
# Structured output
|
|
564
|
+
bitbottle commit files abc1234 MYPROJ/my-service --json
|
|
565
|
+
bitbottle commit files abc1234 MYPROJ/my-service --jq '.[].path'
|
|
566
|
+
```
|
|
567
|
+
|
|
568
|
+
Output columns: `STATUS`, `PATH`, `+ADDITIONS`, `-DELETIONS`.
|
|
569
|
+
Line counts are not available on Bitbucket Server / Data Center (always 0).
|
|
570
|
+
|
|
551
571
|
### Commit Comments
|
|
552
572
|
|
|
553
573
|
Add and manage review-style comments on individual commits. Both Bitbucket
|