I would like to ask if it is possible to use DVC with several accounts on the same machine. At the moment, all commands (dvc pull
, dvc push
, ...) are executed under my name. But after several people joined this project too, I do not want them to execute commands under my name.
When I was alone on this project I generated ssh key:
ssh-keygen
Connected to server where DVC remote data is stored:
ssh-copy-id username@server_IP
Created config file which lets me execute all dvc
commands using ssh:
[core]
remote = storage_server
['remote "storage_server"']
url = ssh://username@server_IP:/home/DVC_remote/DVC_project
What I should do so that several people could execute commands on their own name?