欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

visual studio code配置git环境

程序员文章站 2022-03-04 20:07:52
...

1、git下载环境:https://git-scm.com/downloads

2、计算机 > 属性(右击)> 高级系统设置 > 环境变量 > 系统变量下的Path > 编辑 , 然后新建添加你的Git下的cmd路径,然后确定即可。 如:C:\Program Files\Git\cmd

3、打开visual studio code,然后 文件 > 首选项 > 设置 ,然后添加 "git.path"键,值为Git目录下的cmd下的git.exe文件。 如: "git.path":"C:\Program Files\Git\cmd/git.exe"

4、配置git的账号

git config -–global user.name “用户名” 
git config -–global user.email “对应邮箱” 

5、重启 visual studio code