我想在一行中执行此命令:
git pull && [my passphrase]
怎么做?
这不完全是您所要求的,但对于 http(s):
https://user:pass@domain/repo
凭证助手的使用示例
git config credential.helper store
git config credential.helper 'cache --timeout=3600'
对于基于 ssh 的访问,您将使用 ssh 代理,该代理将在需要时提供 ssh 密钥。这将需要在您的计算机上生成密钥,将公钥存储在远程服务器上并将私钥添加到相关的密钥库。