mirror of
https://github.com/coder/coder.git
synced 2025-07-15 22:20:27 +00:00
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:
@ -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
|
||||
```
|
||||
|
||||
|
@ -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>
|
||||
```
|
||||
|
Reference in New Issue
Block a user