Skip to content

GitHub CLI 2.2.0

Compare
Choose a tag to compare
@github-actions github-actions released this 25 Oct 17:53
· 2621 commits to trunk since this release

Support for GitHub Codespaces

The new gh codespace commands allow creating, listing, connecting to, and otherwise managing your codespaces.

# list your codespaces
$ gh codespace list

# create a new codespace
$ gh codespace create --repo cli/cli

# start an interactive shell within a codespace
$ gh codespace ssh

To get started, check out gh help codespace. You can also use the gh cs <command> alias for short.

Thank you @josebalius, @adonovan, and code contributors: @asciimike @CamiloGarciaLaRotta @CGA1123 @edgonmsft @geramirez @georgebrock @issyl0 @joshmgross @koddsson @marwan-at-work @maxbeizer @nickfyson @Raffo @shanduur!

What's New

What's Changed

  • browse: respect the current working directory for file arguments by @bchadwic in #4007
  • release create: respect the --draft flag in interactive mode by @Sixeight in #4542
  • api: avoid repeating GET parameters when paginating by @mislav in #4559
  • The progress spinner is now visible against a light background #4556
  • Dispatch binary extensions directly by @vilmibm in #4568
  • Fix copy/paste mistake in docs by @stdtom in #4582

New Contributors