Skip to content

Using VSCode as your git editor

2018-01-25

I noticed that the latest revisions of the git installer was showing VSCode as an option to be the git editor. This means for features where you have to work with a commit message or a rebase todo you can use VS Code to do your task.

Silvrback blog image sb_float_center

To enable this all you have to do is add a line under your [core] node so that you have the following

[core]
    editor = code --wait

Then viola!

Silvrback blog image