I have two bitbucket workspaces and as everyone knows, bitbucket requires separate ssh keys for both accounts (much like your password ‘vas123’ is already in use). I setup my .ssh/config file as follow
Host bitbucket.org
IdentitiesOnly yes
AddkeysToAgent yes
IdentityFile ~/.ssh/bitbucket
IdentityFile ~/.ssh/id_ed25519
However the problem is that in order to connect to a workspace, i have to comment out the identity key of the other and save it. is it possible to work with the repos of the both workspaces without tinkering the config file?