如何在 Azure 存储库中区分大小写的 git diff?



对于我的项目,我正在使用 Azure 存储库进行版本控制。当我查看差异时,它是区分大小写的,我不在乎。

有没有办法在 Azure 存储库中打开不区分大小写的差异?

您可以声明自定义差异工具来执行不区分大小写的差异。
如果需要,可以放置其他选项:

git config --global difftool.idiff.cmd 'diff -i --unified --ignore-space-change --ignore-blank-lines --ignore-all-space $LOCAL $REMOTE'
git config --global difftool.prompt 0

然后:

git difftool -t idiff

另请参阅:

  • 使用 Azure DevOps/Azure Repos 时的"Visual Studio 中的 Git 首选项和设置"
  • "Azure 存储库/存储库设置">

相关内容

  • 没有找到相关文章

最新更新