标签:href 环境 path 方式 一个 vscode email 上传 name
VSCode + Git安装过程不详细说了,但安装完后要把git添加到windows环境变量中
git目录是“安装目录\cmd”
安装git后有两个快捷方式:
打开任意一个命令行
输入命令:
git config --global user.name git用户名
git config --global user.email 邮箱
进入项目目录
git init //初始化仓库
git add . //添加文件目录到git仓库
git commit -m "注释" //上传到git仓库
git remote add origin https://github.com/自己的github用户名/项目.git //在github仓库中可找到这个链接
git push -u origin master //推送到分支(分支名master为主分支)
找到代码
[remote "origin"]
url = https://用户名:密码@github.com/github用户名/项目名.git //主要添加@前面的用户和密码
fetch = +refs/heads/:refs/remotes/origin/
"git.path": "git安装目录\cmd\git.exe"
标签:href 环境 path 方式 一个 vscode email 上传 name
原文地址:https://blog.51cto.com/jxnewdate/2358083