gor-cli 0.2.0

A Rust CLI for GitHub — a 'gh' clone
Documentation
---
description: Manage repository labels — list, create, edit, delete, and clone
---

# Labels via gor

Use the `gor` CLI to manage repository labels.

```bash
gor label list -R owner/repo
gor label list -R owner/repo --json name,color,description

gor label create bug -R owner/repo --color d73a4a --description "Bug report"
gor label edit bug -R owner/repo --name bug --color d73a4a
gor label delete bug -R owner/repo

# Clone labels: source is positional, target via -R
gor label clone source-owner/source-repo -R target-owner/target-repo
```