Featured image of post 解决git clone每次都要输入密码的问题

解决git clone每次都要输入密码的问题

在拉取私有库时,每次都需要重新输入密码,可以通过如下方法解决该问题

我们在git clone工程时有2中形式 httpsgit@git。当你使用https拉取工程时每次都需要输入用户名和密码

执行如下命令:

git config --global credential.helper store

这个时候~/.gitconfig文件中会多一行

[credential]
helper = store

执行git pull再次输入用户名和密码

此时你会看到/root/.git-credentials中会多一行内容。里面的内容类似https://{username}:{password}@github.com这种形式

Licensed under CC BY-NC-SA 4.0