18 lines
No EOL
399 B
Bash
18 lines
No EOL
399 B
Bash
#!/bin/bash
|
|
|
|
mkdir -p ~/.ssh && \
|
|
touch ~/.ssh/known_hosts && \
|
|
sudo tee ~/.ssh/config > /dev/null << EOF
|
|
Host github.com
|
|
HostName github.com
|
|
PreferredAuthentications publickey
|
|
IdentityFile ~/.hostssh/id_rsa.pub
|
|
EOF
|
|
|
|
sudo chown -R vscode:vscode ~/.ssh
|
|
|
|
# Install Node.js 6.9.1
|
|
asdf install nodejs 6.9.1
|
|
asdf local nodejs 6.9.1
|
|
|
|
git config --global --add safe.directory /workspaces/webssh2 |