git客户端保存用户名密码


git->编辑本地.git/config(L),在最后追加

[plain] view plain copy
  1. [credential]     
  2.     helper = store  

git bash

[plain] view plain copy
  1. echo "[credential]     
  2.     helper = store" >> .git/config  
[plain] view plain copy
  1. echo "[credential]" >> .git/config     
  2. echo "    helper = store" >> .git/config  

相关文章: