我们在 git clone 工程时有 2 中形式 https
和[email protected]
。当你使用 https 拉取工程时每次都需要输入用户名和密码
git config --global credential.helper store
这个时候~/.gitconfig
文件中会多一行
[credential]
helper = store
我们在 git clone 工程时有 2 中形式 https
和[email protected]
。当你使用 https 拉取工程时每次都需要输入用户名和密码
git config --global credential.helper store
这个时候~/.gitconfig
文件中会多一行
[credential]
helper = store