7 lines
256 B
Bash
7 lines
256 B
Bash
#!/bin/bash
|
|
chmod 600 /root/.ssh/id_ed25519
|
|
export GIT_SSH_COMMAND="ssh -i /root/.ssh/id_ed25519 -o StrictHostKeyChecking=accept-new"
|
|
git config --global user.email "gabriel.pereira@protonmail.com"
|
|
git config --global user.name "gabspereira"
|
|
exec opencode
|