I am using Azure Devops Repos. I have one branch: "master", with this history:
* 🔵 HEAD - Commit 7: Fix production bug (sha: 1a2b3c4)
|
* Commit 6: Add health checks (sha: a1b2c3d)
|
* Commit 5: Improve performance (sha: b2c3d4e)
|
* 🟡 Commit 4 (selected): Refactor auth logic (sha: abc1234)
|
* Commit 3: Add login API (sha: c3d4e5f)
|
* Commit 2: Set up CI pipeline (sha: d4e5f6g)
|
* Commit 1: Init project (sha: e5f6g7h)
I would like to do a visual comparison (in the Azure UI) between "🟡 Commit 4" and "🔵 HEAD - Commit 7". A view which will show me summary of all files which were changed, and the specific changes. Something like we have when we click a specific commit, or when we visualise changes of pull request:

Is there a way to do it in Azure Devops? I know I can compare branches and I can see changes for a single commit, but I would like to see differences for more commits gathered together, similiar like I can do it in IntelliJ just by selecting more than one commit.
masterintotemp-branch. You don't even need to actually create the PR, and you can see the diff like you desire. But, I'm pretty sure that About-To-Create-A-PR screen only diffs the first 100 commits. You'd actually have to create the PR to see all the files if there are more than 100 commits.