1、设置项目本地目录
首先在vscode的插件管理中搜索gitlens并安装,在vscode中打开终端,进入本地项目目录E:\project\test;
2、git基础配置
执行git init 命令进行初始化
git config user.name "happy"//git config --global 设置全局配置不带--global 为当前项目配置
git config user.email "111@sina.com"
git config credential.helper store// 配置记住用户密码
git remote add origin https://github.com/dreamhappy/mapEdit.git//配置自己的远程代码仓库地地址
//设置错误可以用git remote remove origin 删除设置重新配置或 git remote set-url origin 进行修改
3、git 远程代码获取
git pull origin master 从远程库拉取项目
4、vscode 代码编辑
5、填写修改注释
6、推送到远程仓库