如何使用“ git credential-osxkeychain store”从命令行添加凭据?

时间:2018-11-21 20:00:01

标签: git macos

在MacOS中执行'git credential-osxkeychain'时,它显示选项'store',我猜它可以用来添加凭据。

我没有找到任何有关使用'git credential-osxkeychain store'命令添加凭据所需语法的文档,有人知道怎么做吗?

请注意,我确实知道如何使用MacOS应用“钥匙串访问”来做到这一点,我想知道如何使用命令行来做到这一点

1 个答案:

答案 0 :(得分:2)

git credential-osxkeychain store reads protocol/host/username/password(由换行符分隔的标准输入),因此应向它们提供如下内容:

echo "\
protocol=https
host=github.com
username=$NAME
password=$PASSWD" | git credential-osxkeychain store

所有4个参数均为required