image-20211108105806871

目录

实验环境

win10
git version 2.17.0.windows.1

实验软件(无)

1、问题:如何修改vscode作为git默认的编辑器?

2、配置方法

1.查看当前环境

(1)查看当前git环境

hg@LAPTOP-G8TUFE0T MINGW64 ~
$ cd #来到git家目录下

hg@LAPTOP-G8TUFE0T MINGW64 ~
$ pwd
/c/Users/hg

hg@LAPTOP-G8TUFE0T MINGW64 ~
$ cat .gitconfig #查看当前git家目录的全局gitconfig配置文件内容
[user]
        name = hg
        email = 2675263825@qq.com
[filter "lfs"]
        clean = git-lfs clean -- %f
        smudge = git-lfs smudge -- %f
        process = git-lfs filter-process
        required = true
[log]
        date = iso8601
[alias]
        lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
[core]

hg@LAPTOP-G8TUFE0T MINGW64 ~
$ git config --global --list #或者可以用命令查看,相同的效果
user.name=hg
user.email=2675263825@qq.com
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
log.date=iso8601
alias.lg=log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit

hg@LAPTOP-G8TUFE0T MINGW64 ~

(2)确保自己笔记本上安装了vscode软件,并且在git里面运行code是可以打开vscode软件的

hg@LAPTOP-G8TUFE0T MINGW64 ~
$ code

image-20211108105341035

2.开始配置

hg@LAPTOP-G8TUFE0T MINGW64 ~
$ git config --global core.editor "code --wait" #直接配置这1条命令就好

3、验证

查看全局配置文件信息:

hg@LAPTOP-G8TUFE0T MINGW64 ~
$ cat .gitconfig
[user]
        name = hg
        email = 2675263825@qq.com
[filter "lfs"]
        clean = git-lfs clean -- %f
        smudge = git-lfs smudge -- %f
        process = git-lfs filter-process
        required = true
[log]
        date = iso8601
[alias]
        lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
[core]
[core]
        editor = code --wait

hg@LAPTOP-G8TUFE0T MINGW64 ~
$ git config --global --list
user.name=hg
user.email=2675263825@qq.com
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
log.date=iso8601
alias.lg=log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
core.editor=code --wait

hg@LAPTOP-G8TUFE0T MINGW64 ~
$

运行命令测试是否符合预期效果:

hg@LAPTOP-G8TUFE0T MINGW64 ~
$ git config --global -e #在命令行这里直接运行这个命令就可以直接打开~/.gitconfig文件了,可以看到本次就是默认使用vscode来编辑文件了,如果你的vscode启用了vim编辑器的话,正常编辑就好了。要关闭的话直接退出就好了。
hint: Waiting for your editor to close the file...

image-20211108105806871

good,实验到此结束。

关于我

我的博客主旨:我希望每一个人拿着我的博客都可以做出实验现象,先把实验做出来,然后再结合理论知识更深层次去理解技术点,这样学习起来才有乐趣和动力。并且,我的博客内容步骤是很完整的,也分享源码和实验用到的软件,希望能和大家一起共同进步!

各位小伙伴在实际操作过程中如有什么疑问,可随时联系本人免费帮您解决问题:

  1. 个人微信二维码:x2675263825 (舍得), qq:2675263825。

    image-20211002091450217

  2. 个人博客地址:www.onlyonexl.cn

    image-20211002092057988

  3. 个人微信公众号:云原生架构师实战

    image-20211002141739664

  4. 个人csdn

    https://blog.csdn.net/weixin_39246554?spm=1010.2135.3001.5421

    image-20211002092344616

最后

​ 好了,关于如何修改vscode作为git默认的编辑器实验就到这里了,感谢大家阅读,最后贴上我女神的photo,祝大家生活快乐,每天都过的有意义哦,我们下期见!

image-20211108110411871

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐