cli/internal/codespaces/api
John Keech 791c7db632
Fix typo in has_uncommitted_changes for codespaces (#6812)
The REST API for codespaces returns the following schema:
```
"git_status": {
    "ahead": 0,
    "behind": 0,
    "has_unpushed_changes": false,
    "has_uncommitted_changes": false,
    "ref": "main"
  },
  ```

  The CLI was looking for `has_uncommited_changes` in the response instead of `has_uncommitted_changes`, leading to it always reporting a `false` value which could be different than the API response.
2023-01-05 22:02:32 +00:00
..
api.go Fix typo in has_uncommitted_changes for codespaces (#6812) 2023-01-05 22:02:32 +00:00
api_test.go Allow setting codespace display name during create (#6739) 2022-12-19 17:10:34 +01:00