Add git configuration #174
Merged
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.
This pull request introduces several enhancements and refactors to improve Git integration, variable handling, and pipeline configuration in the
Confix.Toolproject. The most important changes include adding support for Git authentication via username and token, refactoring methods to use a unifiedIComponentProviderContext, and introducing aVariableProviderContextfor better variable management across pipelines.Git Integration Enhancements:
GitUsernameOptionsandGitTokenOptionsto enable Git authentication using username and token. These options are now available in relevant pipelines (BuildCommandPipeline,ProjectBuildPipeline,RestoreCommandPipeline). [1] [2] [3] [4] [5]GitUrl.Createmethod to construct repository URLs with authentication credentials when provided. This method is now used in Git operations likeCloneAsyncandSparseCheckoutAsync. [1] [2] [3]Refactoring for Context Unification:
CancellationTokenandLoggerwith the unifiedIComponentProviderContextin methods such asFetchRefsAsyncandProcessComponentAsyncto simplify method signatures and improve maintainability. [1] [2] [3] [4]Variable Management Improvements:
VariableProviderContextto encapsulate variable-related parameters (context.Parameter,context.CancellationToken) and updated pipelines (BuildProjectMiddleware,RestoreProjectMiddleware,VariableCopyPipeline,VariableSetPipeline, etc.) to use this context for consistent variable handling. [1] [2] [3] [4]ListVariablesandResolveOrThrowAsyncto acceptVariableProviderContextinstead ofCancellationToken. [1] [2] [3]Logging Enhancements:
log.LogExceptionin Git-related logging methods (GitSparseCheckoutFailed,GitShowRefsFailed,GitCheckoutFailed) to improve error visibility and debugging. [1] [2] [3]