@proggarapsody/bitbottle 1.63.0 → 1.65.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 +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -393,6 +393,16 @@ Data Center, which has no fork primitive in its REST API. Both `rename` and
|
|
|
393
393
|
`fork` accept `--json fields` and `--jq expr` for structured output.
|
|
394
394
|
`repo transfer` works on both backends and also accepts `--json`/`--jq`.
|
|
395
395
|
|
|
396
|
+
```bash
|
|
397
|
+
# Get or set repository visibility
|
|
398
|
+
bitbottle repo visibility MYPROJ/my-service # prints "public" or "private"
|
|
399
|
+
bitbottle repo visibility MYPROJ/my-service public # make the repo public
|
|
400
|
+
bitbottle repo visibility MYPROJ/my-service private # make the repo private
|
|
401
|
+
```
|
|
402
|
+
|
|
403
|
+
`repo visibility` works on both Bitbucket Cloud and Server / Data Center.
|
|
404
|
+
MCP tool: `repo_visibility(repo[, visibility])`.
|
|
405
|
+
|
|
396
406
|
### Reading source at a ref
|
|
397
407
|
|
|
398
408
|
Read file content and directory listings at any ref (branch, tag, commit
|