Cancel core.editor in Msysgit

I installed my editor for writing SO: How to configure DiffMerge using msysgit / gitk? .

I am wondering how to undo this because I want to return to the standard editing program.

+4
source share
1 answer

Depending on how you ran git config ...

git config --unset core.editor 

or

 git config --global --unset core.editor 
+4
source

Source: https://habr.com/ru/post/1307975/


All Articles