踩坑vscode连接github

1.在github上创建一个仓库,然后clone地址

踩坑vscode连接github_第1张图片

2.在本地找一个存放仓库的地址(不必为空),右键选择git bash,然后

 git clone https://github.com/u19900101/plotly.git 

3.打开vscode,进行修改提交,每次都会要求输入用户名和密码,甚至烦躁

4.解决配置密码问题

在vscode终端控制台下输入

git config --global credential.helper store

重启vscode 完美解决每次输入账号密码的问题

你可能感兴趣的:(git,github)