You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 21, 2023. It is now read-only.
Comment appears on PR page (possibly the line above where I added it, not sure)
Open IPullRequestSessionManager.cs from PR details view
Inline comment doesn't appear on diff view or PR file tree
Diagnosis
It appears the issue caused a dependency in the use of the git diff --indent-heuristic option. GitHub.com uses this but command line and libgit2 doesn't use it by default.
You can see the difference in the output from the following commands (on the github/VisualStudio repo):
We would need a DiffModifiers.IndentHeuristic bool
If you have a GitDiffOptions then you can turn on bit (1 << 31) of the Flags (which unfortunately we don't have access to). See libgit2/libgit2@7e3faf5
@ethomson said he might have a chance to tackle this on on a long flight tomorrow. It would be very much appreciated if he was able to! 😃
Update: it looks like this has changed to GIT_DIFF_INDENT_HEURISTIC = (1u << 18) in recent versions. libgit2/libgit2@2d9d246