Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/infra/docs/dev-desktop.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ authentication, and automatically fetch the user’s public keys from GitHub.
You can connect to the instance with the following command:

```shell
ssh <your-username>@<name>.infra.rust-lang.org
ssh gh-<your-username>@<name>.infra.rust-lang.org
```

Replace `<name>` with the machine name from the table at the top of the page.
Expand All @@ -55,7 +55,7 @@ To make the command easier, you can configure an alias in your `~/.ssh/config` l

```ssh-config
Host rustvm
User <your-username>
User gh-<your-username>
HostName <name>.infra.rust-lang.org
```

Expand Down Expand Up @@ -165,7 +165,7 @@ In summary:
2. Then open VS Code on your machine and install
the [Remote Development Extension Pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack)
3. Open the command palette and search for “Remote-SSH: Connect to host”
4. Enter your username and the instance name (`<your-username>@<instance>`)
4. Enter your username and the instance name (`gh-<your-username>@<instance>`)
5. Select the path for the cloned repository from step 1
6. Install any extensions that you want to run on the server (e.g.
rust-analyzer)
Expand Down