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

在VScode中使用Git

程序员文章站 2022-05-26 14:18:37
...

1 在VScode中设置Git.exe路径

在VScode中点击右下角的管理找到设置,在搜索设置栏里面输入git.path

系统会提醒进入settings.json下添加git.exe的路径

{
"explorer.confirmDelete": false,
"git.path": "E:/GIT/Git/bin/git.exe" //添加这条,路径根据自己安装地方找,注意是"/" 而不是 "\"
}

2 在电脑环境变量中添加cmd路径

找到用户环境变量的PATH,新建添加在GIT文件中的cmd路径E:\GIT\Git\cmd
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-8FcUrqGf-1575345009478)(201911-在VScode中使用Git/1.png)]

3 在VScode中验证

然后重新启动VScode即可在终端进行操作Git命名操作
在VScode终端中输入git -v

PS C:\Users\Chun\blog> git -v
unknown option: -v
usage: git [--version] [--help] [-C <path>] [-c <name>=<value>]
           [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
           [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--bare]
           [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
           <command> [<args>]