Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ USAGE
<!-- usagestop -->
## Commands
<!-- commands -->
* [`hd gh authorize`](#hd-gh-authorize)
* [`hd gh list`](#hd-gh-list)
* [`hd gh logout`](#hd-gh-logout)
* [`hd gh ls`](#hd-gh-ls)
* [`hd help [COMMAND]`](#hd-help-command)
* [`hd report committers`](#hd-report-committers)
* [`hd scan eol`](#hd-scan-eol)
Expand All @@ -89,6 +93,67 @@ USAGE
* [`hd update [CHANNEL]`](#hd-update-channel)
* **NOTE:** Only applies to [binary installation method](#binary-installation). NPM users should use [`npm install`](#global-npm-installation) to update to the latest version.

## `hd gh authorize`

Authorize HeroDevs CLI with GitHub

```
USAGE
$ hd gh authorize [-o]

FLAGS
-o, --overwrite Triggers the authorization flow even if credentials are already stored

DESCRIPTION
Authorize HeroDevs CLI with GitHub

EXAMPLES
$ hd gh authorize

$ hd gh authorize -o

$ hd gh authorize --overwrite
```

_See code: [src/commands/gh/authorize.ts](https://github.com/herodevs/cli/blob/v2.0.0-beta.14/src/commands/gh/authorize.ts)_

## `hd gh list`

Get all GitHub repos of the authorized user

```
USAGE
$ hd gh list

DESCRIPTION
Get all GitHub repos of the authorized user

ALIASES
$ hd gh ls

EXAMPLES
$ hd gh list
```

_See code: [src/commands/gh/list.ts](https://github.com/herodevs/cli/blob/v2.0.0-beta.14/src/commands/gh/list.ts)_

## `hd gh logout`

Clear authorization credentials of GitHub

```
USAGE
$ hd gh logout

DESCRIPTION
Clear authorization credentials of GitHub

EXAMPLES
$ hd gh logout
```

_See code: [src/commands/gh/logout.ts](https://github.com/herodevs/cli/blob/v2.0.0-beta.14/src/commands/gh/logout.ts)_

## `hd help [COMMAND]`

Display help for hd.
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.4/schema.json",
"$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"linter": {
"enabled": true,
Expand Down
Loading