git设置本地账户

问题描述:

  git很方便,git本地如果记住账户信息

问题解决:

vscode  Git 全局设置:
git config --global user.name "mvpbang" 
git config --global user.email "[email protected]"
git config --global credential.helper store   //git记住密码

猜你喜欢

转载自www.cnblogs.com/xiaochina/p/9742582.html