vscode连接github并且提交

如果项目没有创建本地git需要先

git init

如果第一次使用vscode链接github还需要配置全局的github账户与密码

git config --global user.name "账号"
git config --global user.email "邮箱"

然后链接github的https

git remote add origin 你的仓库链接

随后在vscode里面

你可能感兴趣的:(vscode连接github并且提交)