我按照这些说明进行操作,包括有关密码缓存的部分。看来指令是错误的,因为每次git push origin master
我收到此错误:
git: 'credential-cache' is not a git command. See 'get --help'.
...这时我被迫输入我的用户名和密码。完成此操作后,再次显示相同的错误消息,然后显示的输出git push
。
这是我的.gitconfig文件的内容:
[user]
name = myusername
email = myusername@myemaildomain.com
[credential]
helper = cache
要明确的是,在我安装Git并运行Git Bash之后,这正是我键入的内容:
git config --global user.name "myusername"
git config --global user.email "myusername@myemaildomain.com"
git config --global credential.helper cache
请帮忙。真令人沮丧!
--global
。
git config credential.helper cache
确实有用。