fix: Unnest workspaces command to the top-level (#1241)

This changes all "coder workspace *" commands to root.
A few of these were already at the root, like SSH. The
inconsistency made for a confusing experience.
This commit is contained in:
Kyle Carberry
2022-05-02 11:08:52 -05:00
committed by GitHub
parent 252d868298
commit c2b5009208
20 changed files with 76 additions and 125 deletions

View File

@ -59,7 +59,7 @@ coder templates create
Create a workspace and connect to it via SSH:
```bash
coder workspaces create my-first-workspace
coder create my-first-workspace
coder ssh my-first-workspace
```

View File

@ -10,10 +10,10 @@ templates](./templates.md):
```sh
# create a workspace from the template; specify any variables
coder workspaces create <workspace-name>
coder create <workspace-name>
# show the resources behind the workspace, and how to connect
coder workspaces show <workspace-name>
coder show <workspace-name>
```
## Connect with SSH
@ -72,5 +72,5 @@ Use the following command to update a workspace to the latest template version.
The workspace will be stopped and started:
```sh
coder workspaces update <workspace-name>
coder update <workspace-name>
```