I use VS Code and Git-Bash for git commands on Windows, whenever I open it I need to set the ssh-agent and the SSH key address.
When researching the subject I read several tutorials on how to configure ssh-agent when starting VS Code
I created a talsk.json
{
"version": "2.0.0",
"tasks": [
{
"label": "Inicial SSH",
"type": "shell",
"command": "bash",
"args": ["eval $(ssh-agent)",
"ssh-add C://Users//my.user//.ssh//my-key-RSA"]
}
]
}
tasks.json
{
"version": "2.0.0",
"windows": {
"options": {
"shell": {
"executable": "C:\\Program Files\\Git\\bin\\bash.exe",
"args": ["eval $(ssh-agent)",
"ssh-add C://Users//my.user//.ssh//my-key-RSA"]
}
}
}
}
I create .profile
env=~/.ssh/agent.env
agent_load_env () { test -f "$env" && . "$env" >| /dev/null ; }
agent_start () {
(umask 077; ssh-agent >| "$env")
. "$env" >| /dev/null ; }
agent_load_env
# agent_run_state: 0=agent running w/ key; 1=agent w/o key; 2=agent not running
agent_run_state=$(ssh-add -l >| /dev/null 2>&1; echo $?)
if [ ! "$SSH_AUTH_SOCK" ] || [ $agent_run_state = 2 ]; then
agent_start
ssh-add
elif [ "$SSH_AUTH_SOCK" ] && [ $agent_run_state = 1 ]; then
ssh-add
fi
unset env
But it didn't work properly
How do I make it so that when opening VS Code, git-bash starts running these two commands?
$ eval $(ssh-agent)
$ ssh-add C://Users//my.user//.ssh//my-key-RSA
I just need that when opening VS Code it loads git-bash and runs both commands. What is the best way to do this?