When I'm looking at files modified using git diff, I see the following (filenames modified, I use more meaningful names in real life!):
/DN/B/F/B.F.S.T/FRT.cs
/DN/B/F/B.F/L/OSL.cs
However, in Azure Devops, when looking at the files changed in a pull request, I see the following:
/DN/B/F/B.F/L/OSL.cs
/DN/B/F/B.F.S.T/FRT.cs
How can I make the alphabetical sorting of files consistent between the two?
git diff --name-only? Justgit diffdoesn't output just file paths in my experience.