1.输入命令
git config --global credential.helper store
这一步会在用户目录下的.gitconfig文件最后添加:
[credential]
helper = store
2.push代码
这一步会在用户目录下生成文件.git-credential记录用户名密码的信息
格式:
https:{username}:{password}@github.com
1.输入命令
git config --global credential.helper store
这一步会在用户目录下的.gitconfig文件最后添加:
[credential]
helper = store
2.push代码
这一步会在用户目录下生成文件.git-credential记录用户名密码的信息
格式:
https:{username}:{password}@github.com