当我使用命令时,我尝试在 Fedora linux 中将 VS-codium(没有遥测数据的 VSCode[Visual-Studio Code])设置为 git difftool,但git difftool
我遇到了不存在--wait
命令的错误。
我在终端中使用了这些命令:
git config --global diff.tool codium
git config --global difftool.codium.cmd "codium --wait --diff $LOCAL $REMOTE"
.
我也试过这个解决方案。
# Add the following to your .gitconfig file.
[diff]
tool = codium
[difftool]
prompt = false
[difftool "codium"]
cmd = codium "$LOCAL" "$REMOTE"
对于上述解决方案,当我使用 git difftool
命令时,将打开两个窗口,但它们是空的