当我在 vs code 的外部和内部使用 git bash 提交时,如何在新的 window 中打开 vs code

How to open vs code in a new window when i commit with git bash outside and inside of vs code

我想知道当我决定提交 git 时是否有任何方法可以打开新的 window vs 代码。

第一种情况:

我准备提交,我打开 git bash 键入:

git status
git add .
git commit

当我发送最后一个命令时,vs 代码被打开以在他身上键入 mi 消息。但是我已经打开了一个 window 的 vs code,我想 git bash 在一个新的 window 中打开 vs code,这可能吗?

第二种情况

我在 vs code 里面,我准备好提交了。我在 vs 代码中打开 git bash 终端进行提交。相同的历史记录:

git status
git add .
git commit

当我发送最后一条命令时,vs code 打开一个新标签,没有新的 window,来放置消息。我想让小编新开一个window来放留言,这样可以吗?

git config --global -e 将在编辑器中打开 git 配置

[core]
    editor = code --wait -n

添加到core.editor -n 根据docs强制一个新的window