1. 启用凭据缓存
bash
git config --global credential.helper cache
默认缓存时间为 15 分钟,可以设置更长时间(例如 1 小时,3600 秒):
bash
git config --global credential.helper 'cache --timeout=3600'
2. 使用凭据存储(永久保存用户名和密码)
bash
git config --global credential.helper store
在下一次执行 git clone 或 git pull 时,输入一次用户名和密码,Git 会将它们存储在 ~/.git-credentials 文件中,后续操作会自动使用。