GitのマージをVisual Studio Codeで!
By Patineboot
- 1 minutes read
- 207 words
Gitが起動するdiffに、VSCodeをセットする
Microsoftの統合開発環境は昔から良い。Visual Studio 6は大ヒットしたよ。サポート期間の完了して、使いたい人がいたよ。
ブレークポイント、ステップ実行、サクサクにマウスで操作できて良い。
Gitが起動するdiffは、もちろんVSCodeで表示したい!
~/.gitconfig
を編集する
参考にしてね😆
[core]
editor = code --wait
[user]
email = patineboot@example.com ⇦ 秘密です。
name = patineboot
[diff]
tool = default-difftool
[difftool "default-difftool"]
cmd = code --wait --diff $LOCAL $REMOTE