最佳答案
我遵循这些指令的字母,包括关于密码缓存的部分。看起来指令是错误的,因为每次我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
请帮助。这太令人沮丧了!