Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update forwarding instructions for windows #9

Merged
merged 1 commit into from
Sep 29, 2024
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
8 changes: 7 additions & 1 deletion pages/onboarding/asd_watcloud_dev.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,19 @@ To do this, download the `Remote - SSH` VScode Extension. After that, you should

Agent forwarding lets us carry our identity onto other machines that we connect to. What this means is, you can use git commands on other machines without having to create an SSH key on each machine you connect to.

Setup agent forwarding with our helper script. Follow the prompts whenever you get them.
**Linux/Mac**: Setup agent forwarding with our helper script. Follow the prompts whenever you get them.

```bash
cd wato_asd_tooling
bash ssh_helpers/configure_agent_forwarding.sh
```

**Windows**: Open Powershell (as adminstrator) and run the following command,

```
Set-Service -Name ssh-agent -StartupType Automatic; Start-Service ssh-agent
```

### [Host Machine] Confirm Agent Forwarding Works

You should now be able to use git on all the WATcloud machines you connect to. Confirm by running the following **inside a WATcloud machine you connected to**.
Expand Down
Loading