我无法理解为什么" git config credential.helper" (存储或缓存)命令不起作用。
我在linux上,git版本是" 2.11.0"。
首先我做了:
git init
git remote add -f origin username@git.mywebsite.com:projects/myproject
git config core.sparseCheckout true
echo "path/to/my/dir/" > .git/info/sparse-checkout
git checkout
之后我尝试了:
git config credential.helper store
git pull
之后,系统会要求我输入密码
我输入密码,但没有保存。
如果我做" git pull"再次,系统再次要求我输入密码。
我尝试过:
git config credential.helper cache
要么得到相同的结果。
我做错了什么?
由于