Skip to content

Release v0.28.0

Choose a tag to compare

@timofriedlberlin timofriedlberlin released this 06 Feb 00:32
· 69 commits to main since this release
Immutable release. Only release title and notes can be modified.

Features

  • Add GitHub repository creation command (f054d0f)

New Command: dex gh repo create

Create new GitHub repositories directly from the CLI:

dex gh repo create my-repo --public
dex gh repo create my-org/my-repo --private -d "My project"
dex gh repo create my-repo --public --clone --gitignore Go --license MIT

Options:

  • --public, --private, --internal - repository visibility
  • -d, --description - repository description
  • -c, --clone - clone locally after creation
  • --gitignore - template (e.g., Go, Node, Python)
  • -l, --license - template (e.g., MIT, Apache-2.0)
  • --add-readme - include a README file