Git配置免密操作

Git免密码拉取代码

1、配置Git账号密码

git config --global user.name "" // 配置用户名
git config --global user.email "" // 配置登录邮箱
git config --global user.password "" // 配置登录密码

2、配置免密

git config --global credential.helper store // 配置存储模式
配置过后会在.gitconfig中credential层级下追加helper = store

配置后执行git pull操作,会要求在输入一次账号密码,之后就不需要了,并且会在根目录生成一个.git-credentials文件

你可能感兴趣的:(Git配置免密操作)