git push时候总提示输入账号密码 - 免除设置

时间:2024-11-06 14:42:00

linux下

在~/下, touch创建文件 .git-credentials, 用vim编辑此文件,输入内容格式:

touch .git-credentials

vim .git-credentials

https://{username}:{password}@


2. 在终端下执行  git config --global store

3. 可以看到~/.gitconfig文件,会多了一项:

[credential]

    helper = store

更多:

windows下: /ballwql/p/