Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想让用户无需输入密码即可访问 git 存储库。
假设我有一个执行此操作的 bash 脚本:
eval `ssh-agent -s` ssh-add ~/.ssh/id_rsa
这个脚本是用 sudo ./script.sh 运行的 我会为用户而不是 root 添加 ssh 密钥吗?
您可以使用su -c <command> $SUID_USER您的命令。
su -c <command> $SUID_USER