git windows 保存用户名和密码

  • 保存在内存中
git config --global credential.helper cache
  • git config --global credential.helper store
  • .gitconfig 文件中加入以下内容

  
  
  
  
[credential]

   
   
   
   

helper = store

 

  • 在项目的.git目录下config文件中加入以下
[credential]   
    helper = store

   

你可能感兴趣的:(git windows 保存用户名和密码)