Conversation
c70b672 to
44b53bb
Compare
556f1e3 to
1fe5c68
Compare
44b53bb to
fce0ce4
Compare
a1ca341 to
e2cb4a9
Compare
bf2e2c1 to
5f180f9
Compare
e2cb4a9 to
d6a7a98
Compare
5f180f9 to
6da3325
Compare
1ea9948 to
554d734
Compare
1ee42ca to
1908ed0
Compare
00b4362 to
83c8fff
Compare
6adb4f4 to
14b0723
Compare
APErebus
approved these changes
Mar 30, 2026
| // explicit credentials. Clear the search paths for all global config levels so libgit2 | ||
| // cannot load ~/.gitconfig or /etc/gitconfig and pick up a credential helper (e.g. | ||
| // osxkeychain) that would silently override or bypass the credentials we provide. | ||
| GlobalSettings.SetConfigSearchPaths(ConfigurationLevel.Global, Array.Empty<string>()); |
Contributor
There was a problem hiding this comment.
Suggested change
| GlobalSettings.SetConfigSearchPaths(ConfigurationLevel.Global, Array.Empty<string>()); | |
| GlobalSettings.SetConfigSearchPaths(ConfigurationLevel.Global, []); |
Can we use the empty collection syntax?
Collaborator
Author
There was a problem hiding this comment.
Good call, I believe we can.
…o-op test After rebase conflict resolution, some tests incorrectly used UpdatedSourceDetail instead of TrackedSourceDetail. Also applied raw string literal improvements to the newly added no-op source test. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14b0723 to
07e235a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
LibGit2Sharp automatically uses global git credentials by default which means Calamari uses build in credentials instead of the credentials provided.
MD-1672