赞
踩
git仓库与vscode关联
git安装完后,会提示输入用户信息、
a、设置用户名:git config -- global user.name '你再github上注册的用户名';
b、设置用户邮箱:git config -- global user.email '注册时候的邮箱';
git新建仓库,克隆项目到本地会提示输入账号密码,vscode打开项目点击推送即可
VSCode设置git账号和密码(重置流程一致)
一、选中文件-->首选项-->设置,搜索git,在setting.json中添加"git.path":"D:/soft/git/Git/bin/git.exe"
二、git bush中设置Git 全局设置: git config --global user.name "用户名"
git config --global user.email "用户邮箱"
三、设置让VSCode记住git账号和密码:git config --global credential.helper store
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。