├── .azure-pipelines └── release.yml ├── .code-coverage └── coverlet.settings.xml ├── .github ├── ISSUE_TEMPLATE │ ├── auth-issue.yml │ └── feature-req.yml ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── continuous-integration.yml │ ├── lint-docs.yml │ ├── maintainer-absence.yml │ └── validate-install-from-source.yml ├── .gitignore ├── .lycheeignore ├── .markdownlint.jsonc ├── .vscode ├── launch.json └── tasks.json ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── Git-Credential-Manager.sln ├── Git-Credential-Manager.sln.DotSettings ├── LICENSE ├── NOTICE ├── README.md ├── SECURITY.md ├── VERSION ├── assets ├── gcm-banner.png ├── gcm-transparent.png ├── gcm.svg ├── gcm.xaml ├── gcmicon.ico ├── gcmicon128.bmp ├── gcmicon16.bmp ├── gcmicon256.bmp ├── gcmicon32.bmp ├── gcmicon64.bmp └── gcmweb.png ├── docs ├── README.md ├── architecture.md ├── autodetect.md ├── azrepos-misp.md ├── azrepos-users-and-tokens.md ├── bitbucket-authentication.md ├── bitbucket-development.md ├── configuration.md ├── credstores.md ├── development.md ├── enterprise-config.md ├── environment.md ├── faq.md ├── generic-oauth.md ├── github-apideprecation.md ├── gitlab.md ├── hostprovider.md ├── img │ ├── aad-bitlocker.png │ ├── aad-disconnect.png │ ├── aad-questions-21H1.png │ ├── aad-questions.png │ ├── aad-work-school.png │ ├── all-microsoft.png │ ├── app-password.png │ ├── apps-must-ask.png │ ├── gcmcore-rename.png │ ├── get-signed-in.png │ ├── git-for-windows-gcm-screenshot.png │ ├── github-display-pat.png │ ├── github-generate-pat.png │ ├── github-oauthapp-revoke.png │ ├── github-pat-gist-scope.png │ ├── github-pat-note.png │ ├── github-pat-repo-scope.png │ ├── github-pat-workflow-scope.png │ ├── gitlab-oauthapp-revoke.png │ ├── gitlab-oauthapp-revoked.png │ ├── msa-confirm.png │ ├── msa-remove.png │ ├── windows-cli-save-pat.png │ ├── windows-gui-add-pat.png │ └── windows-gui-credentials.png ├── install.md ├── linux-fromsrc-uninstall.md ├── linux-validate-gpg.md ├── migration.md ├── multiple-users.md ├── netconfig.md ├── rename.md ├── usage.md ├── windows-broker.md └── wsl.md ├── global.json ├── nuget.config └── src ├── linux ├── Directory.Build.props └── Packaging.Linux │ ├── Packaging.Linux.csproj │ ├── build.sh │ ├── install-from-source.sh │ ├── layout.sh │ └── pack.sh ├── osx ├── .gitignore ├── Directory.Build.props └── Installer.Mac │ ├── Installer.Mac.csproj │ ├── build.sh │ ├── codesign.sh │ ├── dist.sh │ ├── distribution.arm64.xml │ ├── distribution.x64.xml │ ├── entitlements.xml │ ├── layout.sh │ ├── notarize.sh │ ├── pack.sh │ ├── resources │ ├── background.png │ └── en.lproj │ │ ├── LICENSE │ │ ├── conclusion.html │ │ └── welcome.html │ ├── scripts │ └── postinstall │ └── uninstall.sh ├── shared ├── Atlassian.Bitbucket.Tests │ ├── Atlassian.Bitbucket.Tests.csproj │ ├── BitbucketAuthenticationTest.cs │ ├── BitbucketHelperTest.cs │ ├── BitbucketHostProviderTest.cs │ ├── BitbucketRestApiRegistryTest.cs │ ├── BitbucketTokenEndpointResponseJsonTest.cs │ ├── Cloud │ │ ├── BitbucketOAuth2ClientTest.cs │ │ ├── BitbucketRestApiTest.cs │ │ └── UserInfoTest.cs │ ├── DataCenter │ │ ├── BitbucketOAuth2ClientTest.cs │ │ ├── BitbucketRestApiTest.cs │ │ ├── LoginOptionsTest.cs │ │ └── UserInfoTest.cs │ └── OAuth2ClientRegistryTest.cs ├── Atlassian.Bitbucket │ ├── Atlassian.Bitbucket.csproj │ ├── AuthenticationMethod.cs │ ├── BitbucketAuthentication.cs │ ├── BitbucketConstants.cs │ ├── BitbucketHelper.cs │ ├── BitbucketHostProvider.cs │ ├── BitbucketOAuth2Client.cs │ ├── BitbucketResources.Designer.cs │ ├── BitbucketResources.resx │ ├── BitbucketRestApiRegistry.cs │ ├── BitbucketTokenEndpointResponseJson.cs │ ├── Cloud │ │ ├── BitbucketOAuth2Client.cs │ │ ├── BitbucketRestApi.cs │ │ ├── CloudConstants.cs │ │ └── UserInfo.cs │ ├── DataCenter │ │ ├── BitbucketOAuth2Client.cs │ │ ├── BitbucketRestApi.cs │ │ ├── DataCenterConstants.cs │ │ ├── LoginOption.cs │ │ ├── LoginOptions.cs │ │ └── UserInfo.cs │ ├── IBitbucketRestApi.cs │ ├── IRegistry.cs │ ├── IUserInfo.cs │ ├── InternalsVisibleTo.cs │ ├── OAuth2ClientRegistry.cs │ ├── RestApiResult.cs │ └── UI │ │ ├── Assets │ │ └── atlassian-logo.png │ │ ├── Commands │ │ └── CredentialsCommand.cs │ │ ├── ViewModels │ │ └── CredentialsViewModel.cs │ │ └── Views │ │ ├── CredentialsView.axaml │ │ └── CredentialsView.axaml.cs ├── Core.Tests │ ├── ApplicationTests.cs │ ├── Authentication │ │ ├── AuthenticationBaseTests.cs │ │ ├── BasicAuthenticationTests.cs │ │ ├── MicrosoftAuthenticationTests.cs │ │ ├── OAuth2ClientTests.cs │ │ ├── OAuth2CryptographicCodeGeneratorTests.cs │ │ ├── OAuth2SystemWebBrowserTests.cs │ │ └── WindowsIntegratedAuthenticationTests.cs │ ├── Base64UrlConvertTests.cs │ ├── Commands │ │ ├── ConfigureCommandTests.cs │ │ ├── DiagnoseCommandTests.cs │ │ ├── EraseCommandTests.cs │ │ ├── GetCommandTests.cs │ │ ├── GitCommandBaseTests.cs │ │ ├── StoreCommandTests.cs │ │ └── UnconfigureCommandTests.cs │ ├── ConfigurationServiceTests.cs │ ├── Core.Tests.csproj │ ├── CurlCookieTests.cs │ ├── EnsureArgumentTests.cs │ ├── EnumerableExtensionsTests.cs │ ├── EnvironmentTests.cs │ ├── GenericHostProviderTests.cs │ ├── GenericOAuthConfigTests.cs │ ├── GitConfigurationKeyComparerTests.cs │ ├── GitConfigurationTests.cs │ ├── GitStreamReaderTests.cs │ ├── GitTests.cs │ ├── GitVersionTests.cs │ ├── HostProviderRegistryTests.cs │ ├── HostProviderTests.cs │ ├── HttpClientExtensionsTests.cs │ ├── HttpClientFactoryTests.cs │ ├── HttpRequestExtensionsTests.cs │ ├── IniFileTests.cs │ ├── InputArgumentsTests.cs │ ├── Interop │ │ ├── Linux │ │ │ ├── LinuxFileSystemTests.cs │ │ │ └── SecretServiceCollectionTests.cs │ │ ├── MacOS │ │ │ ├── MacOSFileSystemTests.cs │ │ │ ├── MacOSKeychainTests.cs │ │ │ └── MacOSPreferencesTests.cs │ │ ├── Posix │ │ │ ├── GnuPassCredentialStoreTests.cs │ │ │ └── PosixFileSystemTests.cs │ │ ├── U8StringConverterTests.cs │ │ └── Windows │ │ │ ├── DpapiCredentialStoreTests.cs │ │ │ ├── WindowsCredentialManagerTests.cs │ │ │ ├── WindowsFileSystemTests.cs │ │ │ └── WindowsSystemPromptsTests.cs │ ├── PlaintextCredentialStoreTests.cs │ ├── ProcessManagerTests.cs │ ├── SettingsTests.cs │ ├── StreamExtensionsTests.cs │ ├── StringExtensionsTests.cs │ ├── TestProcessManager.cs │ ├── TokenEndpointResponseJsonTest.cs │ ├── Trace2MessageTests.cs │ ├── Trace2Tests.cs │ ├── TraceTests.cs │ ├── TraceUtilsTests.cs │ ├── UriExtensionsTests.cs │ └── WslUtilsTests.cs ├── Core │ ├── Application.cs │ ├── ApplicationBase.cs │ ├── AssemblyUtils.cs │ ├── Authentication │ │ ├── AuthenticationBase.cs │ │ ├── BasicAuthentication.cs │ │ ├── MicrosoftAuthentication.cs │ │ ├── OAuth │ │ │ ├── HttpListenerExtensions.cs │ │ │ ├── IOAuth2WebBrowser.cs │ │ │ ├── Json │ │ │ │ ├── DeviceAuthorizationEndpointResponseJson.cs │ │ │ │ ├── ErrorResponseJson.cs │ │ │ │ └── TokenEndpointResponseJson.cs │ │ │ ├── OAuth2AuthorizationCodeResult.cs │ │ │ ├── OAuth2Client.cs │ │ │ ├── OAuth2Constants.cs │ │ │ ├── OAuth2CryptographicGenerator.cs │ │ │ ├── OAuth2DeviceCodeResult.cs │ │ │ ├── OAuth2Exception.cs │ │ │ ├── OAuth2ServerEndpoints.cs │ │ │ ├── OAuth2SystemWebBrowser.cs │ │ │ └── OAuth2TokenResult.cs │ │ ├── OAuthAuthentication.cs │ │ └── WindowsIntegratedAuthentication.cs │ ├── Base64UrlConvert.cs │ ├── BrowserUtils.cs │ ├── ChildProcess.cs │ ├── CommandContext.cs │ ├── CommandExtensions.cs │ ├── Commands │ │ ├── ConfigurationCommands.cs │ │ ├── DiagnoseCommand.cs │ │ ├── EraseCommand.cs │ │ ├── GetCommand.cs │ │ ├── GitCommandBase.cs │ │ ├── ProviderCommand.cs │ │ └── StoreCommand.cs │ ├── ConfigurationService.cs │ ├── Constants.cs │ ├── ConvertUtils.cs │ ├── Core.csproj │ ├── Credential.cs │ ├── CredentialCacheStore.cs │ ├── CredentialStore.cs │ ├── CurlCookie.cs │ ├── Diagnostics │ │ ├── CredentialStoreDiagnostic.cs │ │ ├── Diagnostic.cs │ │ ├── EnvironmentDiagnostic.cs │ │ ├── FileSystemDiagnostic.cs │ │ ├── GitDiagnostic.cs │ │ ├── IDiagnosticProvider.cs │ │ ├── MicrosoftAuthenticationDiagnostic.cs │ │ └── NetworkingDiagnostic.cs │ ├── DictionaryExtensions.cs │ ├── DisposableObject.cs │ ├── EncodingEx.cs │ ├── EnsureArgument.cs │ ├── EnumerableExtensions.cs │ ├── EnvironmentBase.cs │ ├── FileCredential.cs │ ├── FileSystem.cs │ ├── GenericHostProvider.cs │ ├── GenericOAuthConfig.cs │ ├── Git.cs │ ├── GitConfiguration.cs │ ├── GitConfigurationEntry.cs │ ├── GitConfigurationKeyComparer.cs │ ├── GitStreamReader.cs │ ├── GitVersion.cs │ ├── Gpg.cs │ ├── HostProvider.cs │ ├── HostProviderRegistry.cs │ ├── HttpClientExtensions.cs │ ├── HttpClientFactory.cs │ ├── HttpContentExtensions.cs │ ├── HttpRequestExtensions.cs │ ├── ICredentialStore.cs │ ├── ISessionManager.cs │ ├── ISystemPrompts.cs │ ├── ITerminal.cs │ ├── ITrace2Writer.cs │ ├── IniFile.cs │ ├── InputArguments.cs │ ├── InternalsVisibleTo.cs │ ├── Interop │ │ ├── InteropException.cs │ │ ├── InteropUtils.cs │ │ ├── Linux │ │ │ ├── LinuxFileSystem.cs │ │ │ ├── LinuxSessionManager.cs │ │ │ ├── LinuxTerminal.cs │ │ │ ├── Native │ │ │ │ ├── Glib.cs │ │ │ │ ├── Gobject.cs │ │ │ │ ├── Libsecret.cs │ │ │ │ └── termios_Linux.cs │ │ │ ├── SecretServiceCollection.cs │ │ │ └── SecretServiceCredential.cs │ │ ├── MacOS │ │ │ ├── MacOSEnvironment.cs │ │ │ ├── MacOSFileSystem.cs │ │ │ ├── MacOSKeychain.cs │ │ │ ├── MacOSKeychainCredential.cs │ │ │ ├── MacOSPreferences.cs │ │ │ ├── MacOSSessionManager.cs │ │ │ ├── MacOSSettings.cs │ │ │ ├── MacOSTerminal.cs │ │ │ └── Native │ │ │ │ ├── CoreFoundation.cs │ │ │ │ ├── LibC.cs │ │ │ │ ├── LibSystem.cs │ │ │ │ ├── SecurityFramework.cs │ │ │ │ └── termios_MacOS.cs │ │ ├── Posix │ │ │ ├── GpgPassCredentialStore.cs │ │ │ ├── Native │ │ │ │ ├── Fcntl.cs │ │ │ │ ├── Signal.cs │ │ │ │ ├── Stat.cs │ │ │ │ ├── Stdio.cs │ │ │ │ ├── Stdlib.cs │ │ │ │ ├── Termios.cs │ │ │ │ └── Unistd.cs │ │ │ ├── PosixEnvironment.cs │ │ │ ├── PosixFileDescriptor.cs │ │ │ ├── PosixFileSystem.cs │ │ │ ├── PosixSessionManager.cs │ │ │ └── PosixTerminal.cs │ │ ├── U8StringConverter.cs │ │ ├── U8StringMarshaler.cs │ │ └── Windows │ │ │ ├── DpapiCredentialStore.cs │ │ │ ├── Native │ │ │ ├── Advapi32.cs │ │ │ ├── CredUi.cs │ │ │ ├── Kernel32.cs │ │ │ ├── Ole32.cs │ │ │ ├── Shell32.cs │ │ │ ├── User32.cs │ │ │ └── Win32Error.cs │ │ │ ├── WindowsCredential.cs │ │ │ ├── WindowsCredentialManager.cs │ │ │ ├── WindowsEnvironment.cs │ │ │ ├── WindowsFileSystem.cs │ │ │ ├── WindowsProcessManager.cs │ │ │ ├── WindowsSessionManager.cs │ │ │ ├── WindowsSettings.cs │ │ │ ├── WindowsSystemPrompts.cs │ │ │ └── WindowsTerminal.cs │ ├── NameValueCollectionExtensions.cs │ ├── NullCredentialStore.cs │ ├── PlaintextCredentialStore.cs │ ├── PlatformUtils.cs │ ├── ProcessManager.cs │ ├── Settings.cs │ ├── StandardStreams.cs │ ├── StreamExtensions.cs │ ├── StringExtensions.cs │ ├── TerminalMenu.cs │ ├── Trace.cs │ ├── Trace2.cs │ ├── Trace2CollectorWriter.cs │ ├── Trace2Exception.cs │ ├── Trace2FileWriter.cs │ ├── Trace2Message.cs │ ├── Trace2StreamWriter.cs │ ├── TraceUtils.cs │ ├── UI │ │ ├── Assets │ │ │ ├── Base.axaml │ │ │ ├── ButtonHyperlink.axaml │ │ │ ├── Controls.axaml │ │ │ └── Images.axaml │ │ ├── AvaloniaApp.axaml │ │ ├── AvaloniaApp.axaml.cs │ │ ├── AvaloniaUi.cs │ │ ├── Commands │ │ │ ├── CredentialsCommand.cs │ │ │ ├── DefaultAccountCommand.cs │ │ │ ├── DeviceCodeCommand.cs │ │ │ └── OAuthCommand.cs │ │ ├── Controls │ │ │ ├── AboutWindow.axaml │ │ │ ├── AboutWindow.axaml.cs │ │ │ ├── DialogWindow.axaml │ │ │ ├── DialogWindow.axaml.cs │ │ │ ├── IFocusable.cs │ │ │ ├── ProgressWindow.axaml │ │ │ └── ProgressWindow.axaml.cs │ │ ├── Converters │ │ │ ├── BoolConvertersEx.cs │ │ │ └── WindowClientAreaConverters.cs │ │ ├── Dispatcher.cs │ │ ├── HelperApplication.cs │ │ ├── HelperCommand.cs │ │ ├── RelayCommand.cs │ │ ├── ViewModels │ │ │ ├── CredentialsViewModel.cs │ │ │ ├── DefaultAccountViewModel.cs │ │ │ ├── DeviceCodeViewModel.cs │ │ │ ├── OAuthViewModel.cs │ │ │ ├── ViewModel.cs │ │ │ └── WindowViewModel.cs │ │ └── Views │ │ │ ├── CredentialsView.axaml │ │ │ ├── CredentialsView.axaml.cs │ │ │ ├── DefaultAccountView.axaml │ │ │ ├── DefaultAccountView.axaml.cs │ │ │ ├── DeviceCodeView.axaml │ │ │ ├── DeviceCodeView.axaml.cs │ │ │ ├── OAuthView.axaml │ │ │ └── OAuthView.axaml.cs │ ├── UriExtensions.cs │ ├── WslUtils.cs │ └── X509Utils.cs ├── Directory.Build.props ├── DotnetTool │ ├── DotnetTool.csproj │ ├── DotnetToolSettings.xml │ ├── dotnet-tool.nuspec │ ├── icon.png │ ├── layout.ps1 │ └── pack.ps1 ├── Git-Credential-Manager │ ├── Git-Credential-Manager.csproj │ ├── NOTICE │ └── Program.cs ├── GitHub.Tests │ ├── GitHub.Tests.csproj │ ├── GitHubAuthChallengeTests.cs │ ├── GitHubAuthenticationTests.cs │ ├── GitHubHostProviderTests.cs │ └── GitHubRestApiTests.cs ├── GitHub.UI.Avalonia │ └── Commands │ │ └── SelectAccountCommandImpl.cs ├── GitHub │ ├── AuthenticationResult.cs │ ├── Diagnostics │ │ └── GitHubApiDiagnostic.cs │ ├── GitHub.csproj │ ├── GitHubAuthChallenge.cs │ ├── GitHubAuthentication.cs │ ├── GitHubConstants.cs │ ├── GitHubHostProvider.Commands.cs │ ├── GitHubHostProvider.cs │ ├── GitHubOAuth2Client.cs │ ├── GitHubResources.Designer.cs │ ├── GitHubResources.resx │ ├── GitHubRestApi.cs │ ├── InternalsVisibleTo.cs │ └── UI │ │ ├── Commands │ │ ├── CredentialsCommand.cs │ │ ├── DeviceCommand.cs │ │ ├── SelectAccountCommand.cs │ │ └── TwoFactorCommand.cs │ │ ├── Controls │ │ ├── HorizontalShadowDivider.axaml │ │ ├── HorizontalShadowDivider.axaml.cs │ │ ├── SixDigitInput.axaml │ │ └── SixDigitInput.axaml.cs │ │ ├── ViewModels │ │ ├── CredentialsViewModel.cs │ │ ├── DeviceCodeViewModel.cs │ │ ├── SelectAccountViewModel.cs │ │ └── TwoFactorViewModel.cs │ │ └── Views │ │ ├── CredentialsView.axaml │ │ ├── CredentialsView.axaml.cs │ │ ├── DeviceCodeView.axaml │ │ ├── DeviceCodeView.axaml.cs │ │ ├── SelectAccountView.axaml │ │ ├── SelectAccountView.axaml.cs │ │ ├── TwoFactorView.axaml │ │ └── TwoFactorView.axaml.cs ├── GitLab.Tests │ ├── GitLab.Tests.csproj │ ├── GitLabAuthenticationTests.cs │ └── GitLabHostProviderTests.cs ├── GitLab │ ├── GitLab.csproj │ ├── GitLabAuthentication.cs │ ├── GitLabConstants.cs │ ├── GitLabHostProvider.cs │ ├── GitLabOAuth2Client.cs │ ├── InternalsVisibleTo.cs │ └── UI │ │ ├── Assets │ │ └── Images.axaml │ │ ├── Commands │ │ └── CredentialsCommand.cs │ │ ├── ViewModels │ │ └── CredentialsViewModel.cs │ │ └── Views │ │ ├── CredentialsView.axaml │ │ └── CredentialsView.axaml.cs ├── Microsoft.AzureRepos.Tests │ ├── AzureDevOpsApiTests.cs │ ├── AzureReposAuthorityCacheTests.cs │ ├── AzureReposBindingManagerTests.cs │ ├── AzureReposHostProviderTests.cs │ ├── Microsoft.AzureRepos.Tests.csproj │ └── UriHelpersTests.cs ├── Microsoft.AzureRepos │ ├── AzureDevOpsAuthorityCache.cs │ ├── AzureDevOpsConstants.cs │ ├── AzureDevOpsRestApi.cs │ ├── AzureReposBindingManager.cs │ ├── AzureReposHostProvider.cs │ ├── InternalsVisibleTo.cs │ ├── Microsoft.AzureRepos.csproj │ └── UriHelpers.cs └── TestInfrastructure │ ├── AssertEx.cs │ ├── GitTestUtilities.cs │ ├── Objects │ ├── NullTrace.cs │ ├── TestCommandContext.cs │ ├── TestCredentialStore.cs │ ├── TestEnvironment.cs │ ├── TestFileSystem.cs │ ├── TestGit.cs │ ├── TestGitConfiguration.cs │ ├── TestGpg.cs │ ├── TestHostProvider.cs │ ├── TestHostProviderRegistry.cs │ ├── TestHttpClientFactory.cs │ ├── TestHttpMessageHandler.cs │ ├── TestOAuth2Server.cs │ ├── TestOAuth2WebBrowser.cs │ ├── TestSessionManager.cs │ ├── TestSettings.cs │ ├── TestStandardStreams.cs │ └── TestTerminal.cs │ ├── PlatformAttributes.cs │ ├── RestTestUtilities.cs │ ├── TestInfrastructure.csproj │ └── TestUtils.cs └── windows ├── Directory.Build.props └── Installer.Windows ├── Installer.Windows.csproj ├── Setup.iss └── layout.ps1 /.azure-pipelines/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/.azure-pipelines/release.yml -------------------------------------------------------------------------------- /.code-coverage/coverlet.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/.code-coverage/coverlet.settings.xml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/auth-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/.github/ISSUE_TEMPLATE/auth-issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-req.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/.github/ISSUE_TEMPLATE/feature-req.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/lint-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/.github/workflows/lint-docs.yml -------------------------------------------------------------------------------- /.github/workflows/maintainer-absence.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/.github/workflows/maintainer-absence.yml -------------------------------------------------------------------------------- /.github/workflows/validate-install-from-source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/.github/workflows/validate-install-from-source.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/.lycheeignore -------------------------------------------------------------------------------- /.markdownlint.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/.markdownlint.jsonc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Git-Credential-Manager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/Git-Credential-Manager.sln -------------------------------------------------------------------------------- /Git-Credential-Manager.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/Git-Credential-Manager.sln.DotSettings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.7.0.0 2 | -------------------------------------------------------------------------------- /assets/gcm-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/assets/gcm-banner.png -------------------------------------------------------------------------------- /assets/gcm-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/assets/gcm-transparent.png -------------------------------------------------------------------------------- /assets/gcm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/assets/gcm.svg -------------------------------------------------------------------------------- /assets/gcm.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/assets/gcm.xaml -------------------------------------------------------------------------------- /assets/gcmicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/assets/gcmicon.ico -------------------------------------------------------------------------------- /assets/gcmicon128.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/assets/gcmicon128.bmp -------------------------------------------------------------------------------- /assets/gcmicon16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/assets/gcmicon16.bmp -------------------------------------------------------------------------------- /assets/gcmicon256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/assets/gcmicon256.bmp -------------------------------------------------------------------------------- /assets/gcmicon32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/assets/gcmicon32.bmp -------------------------------------------------------------------------------- /assets/gcmicon64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/assets/gcmicon64.bmp -------------------------------------------------------------------------------- /assets/gcmweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/assets/gcmweb.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/autodetect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/autodetect.md -------------------------------------------------------------------------------- /docs/azrepos-misp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/azrepos-misp.md -------------------------------------------------------------------------------- /docs/azrepos-users-and-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/azrepos-users-and-tokens.md -------------------------------------------------------------------------------- /docs/bitbucket-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/bitbucket-authentication.md -------------------------------------------------------------------------------- /docs/bitbucket-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/bitbucket-development.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/credstores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/credstores.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/enterprise-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/enterprise-config.md -------------------------------------------------------------------------------- /docs/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/environment.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/generic-oauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/generic-oauth.md -------------------------------------------------------------------------------- /docs/github-apideprecation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/github-apideprecation.md -------------------------------------------------------------------------------- /docs/gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/gitlab.md -------------------------------------------------------------------------------- /docs/hostprovider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/hostprovider.md -------------------------------------------------------------------------------- /docs/img/aad-bitlocker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/aad-bitlocker.png -------------------------------------------------------------------------------- /docs/img/aad-disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/aad-disconnect.png -------------------------------------------------------------------------------- /docs/img/aad-questions-21H1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/aad-questions-21H1.png -------------------------------------------------------------------------------- /docs/img/aad-questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/aad-questions.png -------------------------------------------------------------------------------- /docs/img/aad-work-school.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/aad-work-school.png -------------------------------------------------------------------------------- /docs/img/all-microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/all-microsoft.png -------------------------------------------------------------------------------- /docs/img/app-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/app-password.png -------------------------------------------------------------------------------- /docs/img/apps-must-ask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/apps-must-ask.png -------------------------------------------------------------------------------- /docs/img/gcmcore-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/gcmcore-rename.png -------------------------------------------------------------------------------- /docs/img/get-signed-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/get-signed-in.png -------------------------------------------------------------------------------- /docs/img/git-for-windows-gcm-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/git-for-windows-gcm-screenshot.png -------------------------------------------------------------------------------- /docs/img/github-display-pat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/github-display-pat.png -------------------------------------------------------------------------------- /docs/img/github-generate-pat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/github-generate-pat.png -------------------------------------------------------------------------------- /docs/img/github-oauthapp-revoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/github-oauthapp-revoke.png -------------------------------------------------------------------------------- /docs/img/github-pat-gist-scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/github-pat-gist-scope.png -------------------------------------------------------------------------------- /docs/img/github-pat-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/github-pat-note.png -------------------------------------------------------------------------------- /docs/img/github-pat-repo-scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/github-pat-repo-scope.png -------------------------------------------------------------------------------- /docs/img/github-pat-workflow-scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/github-pat-workflow-scope.png -------------------------------------------------------------------------------- /docs/img/gitlab-oauthapp-revoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/gitlab-oauthapp-revoke.png -------------------------------------------------------------------------------- /docs/img/gitlab-oauthapp-revoked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/gitlab-oauthapp-revoked.png -------------------------------------------------------------------------------- /docs/img/msa-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/msa-confirm.png -------------------------------------------------------------------------------- /docs/img/msa-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/msa-remove.png -------------------------------------------------------------------------------- /docs/img/windows-cli-save-pat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/windows-cli-save-pat.png -------------------------------------------------------------------------------- /docs/img/windows-gui-add-pat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/windows-gui-add-pat.png -------------------------------------------------------------------------------- /docs/img/windows-gui-credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/img/windows-gui-credentials.png -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/linux-fromsrc-uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/linux-fromsrc-uninstall.md -------------------------------------------------------------------------------- /docs/linux-validate-gpg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/linux-validate-gpg.md -------------------------------------------------------------------------------- /docs/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/migration.md -------------------------------------------------------------------------------- /docs/multiple-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/multiple-users.md -------------------------------------------------------------------------------- /docs/netconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/netconfig.md -------------------------------------------------------------------------------- /docs/rename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/rename.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/usage.md -------------------------------------------------------------------------------- /docs/windows-broker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/windows-broker.md -------------------------------------------------------------------------------- /docs/wsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/docs/wsl.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/global.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/nuget.config -------------------------------------------------------------------------------- /src/linux/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/linux/Directory.Build.props -------------------------------------------------------------------------------- /src/linux/Packaging.Linux/Packaging.Linux.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/linux/Packaging.Linux/Packaging.Linux.csproj -------------------------------------------------------------------------------- /src/linux/Packaging.Linux/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/linux/Packaging.Linux/build.sh -------------------------------------------------------------------------------- /src/linux/Packaging.Linux/install-from-source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/linux/Packaging.Linux/install-from-source.sh -------------------------------------------------------------------------------- /src/linux/Packaging.Linux/layout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/linux/Packaging.Linux/layout.sh -------------------------------------------------------------------------------- /src/linux/Packaging.Linux/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/linux/Packaging.Linux/pack.sh -------------------------------------------------------------------------------- /src/osx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/.gitignore -------------------------------------------------------------------------------- /src/osx/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Directory.Build.props -------------------------------------------------------------------------------- /src/osx/Installer.Mac/Installer.Mac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Installer.Mac/Installer.Mac.csproj -------------------------------------------------------------------------------- /src/osx/Installer.Mac/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Installer.Mac/build.sh -------------------------------------------------------------------------------- /src/osx/Installer.Mac/codesign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Installer.Mac/codesign.sh -------------------------------------------------------------------------------- /src/osx/Installer.Mac/dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Installer.Mac/dist.sh -------------------------------------------------------------------------------- /src/osx/Installer.Mac/distribution.arm64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Installer.Mac/distribution.arm64.xml -------------------------------------------------------------------------------- /src/osx/Installer.Mac/distribution.x64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Installer.Mac/distribution.x64.xml -------------------------------------------------------------------------------- /src/osx/Installer.Mac/entitlements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Installer.Mac/entitlements.xml -------------------------------------------------------------------------------- /src/osx/Installer.Mac/layout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Installer.Mac/layout.sh -------------------------------------------------------------------------------- /src/osx/Installer.Mac/notarize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Installer.Mac/notarize.sh -------------------------------------------------------------------------------- /src/osx/Installer.Mac/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Installer.Mac/pack.sh -------------------------------------------------------------------------------- /src/osx/Installer.Mac/resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Installer.Mac/resources/background.png -------------------------------------------------------------------------------- /src/osx/Installer.Mac/resources/en.lproj/LICENSE: -------------------------------------------------------------------------------- 1 | ../../../../../LICENSE -------------------------------------------------------------------------------- /src/osx/Installer.Mac/resources/en.lproj/conclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Installer.Mac/resources/en.lproj/conclusion.html -------------------------------------------------------------------------------- /src/osx/Installer.Mac/resources/en.lproj/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Installer.Mac/resources/en.lproj/welcome.html -------------------------------------------------------------------------------- /src/osx/Installer.Mac/scripts/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Installer.Mac/scripts/postinstall -------------------------------------------------------------------------------- /src/osx/Installer.Mac/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/osx/Installer.Mac/uninstall.sh -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket.Tests/Atlassian.Bitbucket.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket.Tests/Atlassian.Bitbucket.Tests.csproj -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket.Tests/BitbucketAuthenticationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket.Tests/BitbucketAuthenticationTest.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket.Tests/BitbucketHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket.Tests/BitbucketHelperTest.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket.Tests/BitbucketHostProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket.Tests/BitbucketHostProviderTest.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket.Tests/BitbucketRestApiRegistryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket.Tests/BitbucketRestApiRegistryTest.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket.Tests/BitbucketTokenEndpointResponseJsonTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket.Tests/BitbucketTokenEndpointResponseJsonTest.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket.Tests/Cloud/BitbucketOAuth2ClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket.Tests/Cloud/BitbucketOAuth2ClientTest.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket.Tests/Cloud/BitbucketRestApiTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket.Tests/Cloud/BitbucketRestApiTest.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket.Tests/Cloud/UserInfoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket.Tests/Cloud/UserInfoTest.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket.Tests/DataCenter/BitbucketOAuth2ClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket.Tests/DataCenter/BitbucketOAuth2ClientTest.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket.Tests/DataCenter/BitbucketRestApiTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket.Tests/DataCenter/BitbucketRestApiTest.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket.Tests/DataCenter/LoginOptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket.Tests/DataCenter/LoginOptionsTest.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket.Tests/DataCenter/UserInfoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket.Tests/DataCenter/UserInfoTest.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket.Tests/OAuth2ClientRegistryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket.Tests/OAuth2ClientRegistryTest.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/Atlassian.Bitbucket.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/Atlassian.Bitbucket.csproj -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/AuthenticationMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/AuthenticationMethod.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/BitbucketAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/BitbucketAuthentication.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/BitbucketConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/BitbucketConstants.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/BitbucketHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/BitbucketHelper.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/BitbucketHostProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/BitbucketHostProvider.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/BitbucketOAuth2Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/BitbucketOAuth2Client.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/BitbucketResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/BitbucketResources.Designer.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/BitbucketResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/BitbucketResources.resx -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/BitbucketRestApiRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/BitbucketRestApiRegistry.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/BitbucketTokenEndpointResponseJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/BitbucketTokenEndpointResponseJson.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/Cloud/BitbucketOAuth2Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/Cloud/BitbucketOAuth2Client.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/Cloud/BitbucketRestApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/Cloud/BitbucketRestApi.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/Cloud/CloudConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/Cloud/CloudConstants.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/Cloud/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/Cloud/UserInfo.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/DataCenter/BitbucketOAuth2Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/DataCenter/BitbucketOAuth2Client.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/DataCenter/BitbucketRestApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/DataCenter/BitbucketRestApi.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/DataCenter/DataCenterConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/DataCenter/DataCenterConstants.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/DataCenter/LoginOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/DataCenter/LoginOption.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/DataCenter/LoginOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/DataCenter/LoginOptions.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/DataCenter/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/DataCenter/UserInfo.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/IBitbucketRestApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/IBitbucketRestApi.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/IRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/IRegistry.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/IUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/IUserInfo.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/OAuth2ClientRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/OAuth2ClientRegistry.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/RestApiResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/RestApiResult.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/UI/Assets/atlassian-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/UI/Assets/atlassian-logo.png -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/UI/Commands/CredentialsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/UI/Commands/CredentialsCommand.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/UI/ViewModels/CredentialsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/UI/ViewModels/CredentialsViewModel.cs -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/UI/Views/CredentialsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/UI/Views/CredentialsView.axaml -------------------------------------------------------------------------------- /src/shared/Atlassian.Bitbucket/UI/Views/CredentialsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Atlassian.Bitbucket/UI/Views/CredentialsView.axaml.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/ApplicationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/ApplicationTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Authentication/AuthenticationBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Authentication/AuthenticationBaseTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Authentication/BasicAuthenticationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Authentication/BasicAuthenticationTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Authentication/MicrosoftAuthenticationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Authentication/MicrosoftAuthenticationTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Authentication/OAuth2ClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Authentication/OAuth2ClientTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Authentication/OAuth2CryptographicCodeGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Authentication/OAuth2CryptographicCodeGeneratorTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Authentication/OAuth2SystemWebBrowserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Authentication/OAuth2SystemWebBrowserTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Authentication/WindowsIntegratedAuthenticationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Authentication/WindowsIntegratedAuthenticationTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Base64UrlConvertTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Base64UrlConvertTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Commands/ConfigureCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Commands/ConfigureCommandTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Commands/DiagnoseCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Commands/DiagnoseCommandTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Commands/EraseCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Commands/EraseCommandTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Commands/GetCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Commands/GetCommandTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Commands/GitCommandBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Commands/GitCommandBaseTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Commands/StoreCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Commands/StoreCommandTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Commands/UnconfigureCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Commands/UnconfigureCommandTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/ConfigurationServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/ConfigurationServiceTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Core.Tests.csproj -------------------------------------------------------------------------------- /src/shared/Core.Tests/CurlCookieTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/CurlCookieTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/EnsureArgumentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/EnsureArgumentTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/EnumerableExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/EnumerableExtensionsTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/EnvironmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/EnvironmentTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/GenericHostProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/GenericHostProviderTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/GenericOAuthConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/GenericOAuthConfigTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/GitConfigurationKeyComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/GitConfigurationKeyComparerTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/GitConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/GitConfigurationTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/GitStreamReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/GitStreamReaderTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/GitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/GitTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/GitVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/GitVersionTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/HostProviderRegistryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/HostProviderRegistryTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/HostProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/HostProviderTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/HttpClientExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/HttpClientExtensionsTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/HttpClientFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/HttpClientFactoryTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/HttpRequestExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/HttpRequestExtensionsTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/IniFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/IniFileTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/InputArgumentsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/InputArgumentsTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Interop/Linux/LinuxFileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Interop/Linux/LinuxFileSystemTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Interop/Linux/SecretServiceCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Interop/Linux/SecretServiceCollectionTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Interop/MacOS/MacOSFileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Interop/MacOS/MacOSFileSystemTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Interop/MacOS/MacOSKeychainTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Interop/MacOS/MacOSKeychainTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Interop/MacOS/MacOSPreferencesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Interop/MacOS/MacOSPreferencesTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Interop/Posix/GnuPassCredentialStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Interop/Posix/GnuPassCredentialStoreTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Interop/Posix/PosixFileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Interop/Posix/PosixFileSystemTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Interop/U8StringConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Interop/U8StringConverterTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Interop/Windows/DpapiCredentialStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Interop/Windows/DpapiCredentialStoreTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Interop/Windows/WindowsCredentialManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Interop/Windows/WindowsCredentialManagerTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Interop/Windows/WindowsFileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Interop/Windows/WindowsFileSystemTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Interop/Windows/WindowsSystemPromptsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Interop/Windows/WindowsSystemPromptsTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/PlaintextCredentialStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/PlaintextCredentialStoreTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/ProcessManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/ProcessManagerTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/SettingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/SettingsTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/StreamExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/StreamExtensionsTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/StringExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/StringExtensionsTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/TestProcessManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/TestProcessManager.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/TokenEndpointResponseJsonTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/TokenEndpointResponseJsonTest.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Trace2MessageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Trace2MessageTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/Trace2Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/Trace2Tests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/TraceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/TraceTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/TraceUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/TraceUtilsTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/UriExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/UriExtensionsTests.cs -------------------------------------------------------------------------------- /src/shared/Core.Tests/WslUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core.Tests/WslUtilsTests.cs -------------------------------------------------------------------------------- /src/shared/Core/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Application.cs -------------------------------------------------------------------------------- /src/shared/Core/ApplicationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/ApplicationBase.cs -------------------------------------------------------------------------------- /src/shared/Core/AssemblyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/AssemblyUtils.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/AuthenticationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/AuthenticationBase.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/BasicAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/BasicAuthentication.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/MicrosoftAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/MicrosoftAuthentication.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/OAuth/HttpListenerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/OAuth/HttpListenerExtensions.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/OAuth/IOAuth2WebBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/OAuth/IOAuth2WebBrowser.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/OAuth/Json/DeviceAuthorizationEndpointResponseJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/OAuth/Json/DeviceAuthorizationEndpointResponseJson.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/OAuth/Json/ErrorResponseJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/OAuth/Json/ErrorResponseJson.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/OAuth/Json/TokenEndpointResponseJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/OAuth/Json/TokenEndpointResponseJson.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/OAuth/OAuth2AuthorizationCodeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/OAuth/OAuth2AuthorizationCodeResult.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/OAuth/OAuth2Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/OAuth/OAuth2Client.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/OAuth/OAuth2Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/OAuth/OAuth2Constants.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/OAuth/OAuth2CryptographicGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/OAuth/OAuth2CryptographicGenerator.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/OAuth/OAuth2DeviceCodeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/OAuth/OAuth2DeviceCodeResult.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/OAuth/OAuth2Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/OAuth/OAuth2Exception.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/OAuth/OAuth2ServerEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/OAuth/OAuth2ServerEndpoints.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/OAuth/OAuth2SystemWebBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/OAuth/OAuth2SystemWebBrowser.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/OAuth/OAuth2TokenResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/OAuth/OAuth2TokenResult.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/OAuthAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/OAuthAuthentication.cs -------------------------------------------------------------------------------- /src/shared/Core/Authentication/WindowsIntegratedAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Authentication/WindowsIntegratedAuthentication.cs -------------------------------------------------------------------------------- /src/shared/Core/Base64UrlConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Base64UrlConvert.cs -------------------------------------------------------------------------------- /src/shared/Core/BrowserUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/BrowserUtils.cs -------------------------------------------------------------------------------- /src/shared/Core/ChildProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/ChildProcess.cs -------------------------------------------------------------------------------- /src/shared/Core/CommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/CommandContext.cs -------------------------------------------------------------------------------- /src/shared/Core/CommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/CommandExtensions.cs -------------------------------------------------------------------------------- /src/shared/Core/Commands/ConfigurationCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Commands/ConfigurationCommands.cs -------------------------------------------------------------------------------- /src/shared/Core/Commands/DiagnoseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Commands/DiagnoseCommand.cs -------------------------------------------------------------------------------- /src/shared/Core/Commands/EraseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Commands/EraseCommand.cs -------------------------------------------------------------------------------- /src/shared/Core/Commands/GetCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Commands/GetCommand.cs -------------------------------------------------------------------------------- /src/shared/Core/Commands/GitCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Commands/GitCommandBase.cs -------------------------------------------------------------------------------- /src/shared/Core/Commands/ProviderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Commands/ProviderCommand.cs -------------------------------------------------------------------------------- /src/shared/Core/Commands/StoreCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Commands/StoreCommand.cs -------------------------------------------------------------------------------- /src/shared/Core/ConfigurationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/ConfigurationService.cs -------------------------------------------------------------------------------- /src/shared/Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Constants.cs -------------------------------------------------------------------------------- /src/shared/Core/ConvertUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/ConvertUtils.cs -------------------------------------------------------------------------------- /src/shared/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Core.csproj -------------------------------------------------------------------------------- /src/shared/Core/Credential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Credential.cs -------------------------------------------------------------------------------- /src/shared/Core/CredentialCacheStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/CredentialCacheStore.cs -------------------------------------------------------------------------------- /src/shared/Core/CredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/CredentialStore.cs -------------------------------------------------------------------------------- /src/shared/Core/CurlCookie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/CurlCookie.cs -------------------------------------------------------------------------------- /src/shared/Core/Diagnostics/CredentialStoreDiagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Diagnostics/CredentialStoreDiagnostic.cs -------------------------------------------------------------------------------- /src/shared/Core/Diagnostics/Diagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Diagnostics/Diagnostic.cs -------------------------------------------------------------------------------- /src/shared/Core/Diagnostics/EnvironmentDiagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Diagnostics/EnvironmentDiagnostic.cs -------------------------------------------------------------------------------- /src/shared/Core/Diagnostics/FileSystemDiagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Diagnostics/FileSystemDiagnostic.cs -------------------------------------------------------------------------------- /src/shared/Core/Diagnostics/GitDiagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Diagnostics/GitDiagnostic.cs -------------------------------------------------------------------------------- /src/shared/Core/Diagnostics/IDiagnosticProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Diagnostics/IDiagnosticProvider.cs -------------------------------------------------------------------------------- /src/shared/Core/Diagnostics/MicrosoftAuthenticationDiagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Diagnostics/MicrosoftAuthenticationDiagnostic.cs -------------------------------------------------------------------------------- /src/shared/Core/Diagnostics/NetworkingDiagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Diagnostics/NetworkingDiagnostic.cs -------------------------------------------------------------------------------- /src/shared/Core/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/shared/Core/DisposableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/DisposableObject.cs -------------------------------------------------------------------------------- /src/shared/Core/EncodingEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/EncodingEx.cs -------------------------------------------------------------------------------- /src/shared/Core/EnsureArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/EnsureArgument.cs -------------------------------------------------------------------------------- /src/shared/Core/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/shared/Core/EnvironmentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/EnvironmentBase.cs -------------------------------------------------------------------------------- /src/shared/Core/FileCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/FileCredential.cs -------------------------------------------------------------------------------- /src/shared/Core/FileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/FileSystem.cs -------------------------------------------------------------------------------- /src/shared/Core/GenericHostProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/GenericHostProvider.cs -------------------------------------------------------------------------------- /src/shared/Core/GenericOAuthConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/GenericOAuthConfig.cs -------------------------------------------------------------------------------- /src/shared/Core/Git.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Git.cs -------------------------------------------------------------------------------- /src/shared/Core/GitConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/GitConfiguration.cs -------------------------------------------------------------------------------- /src/shared/Core/GitConfigurationEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/GitConfigurationEntry.cs -------------------------------------------------------------------------------- /src/shared/Core/GitConfigurationKeyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/GitConfigurationKeyComparer.cs -------------------------------------------------------------------------------- /src/shared/Core/GitStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/GitStreamReader.cs -------------------------------------------------------------------------------- /src/shared/Core/GitVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/GitVersion.cs -------------------------------------------------------------------------------- /src/shared/Core/Gpg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Gpg.cs -------------------------------------------------------------------------------- /src/shared/Core/HostProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/HostProvider.cs -------------------------------------------------------------------------------- /src/shared/Core/HostProviderRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/HostProviderRegistry.cs -------------------------------------------------------------------------------- /src/shared/Core/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/HttpClientExtensions.cs -------------------------------------------------------------------------------- /src/shared/Core/HttpClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/HttpClientFactory.cs -------------------------------------------------------------------------------- /src/shared/Core/HttpContentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/HttpContentExtensions.cs -------------------------------------------------------------------------------- /src/shared/Core/HttpRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/HttpRequestExtensions.cs -------------------------------------------------------------------------------- /src/shared/Core/ICredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/ICredentialStore.cs -------------------------------------------------------------------------------- /src/shared/Core/ISessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/ISessionManager.cs -------------------------------------------------------------------------------- /src/shared/Core/ISystemPrompts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/ISystemPrompts.cs -------------------------------------------------------------------------------- /src/shared/Core/ITerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/ITerminal.cs -------------------------------------------------------------------------------- /src/shared/Core/ITrace2Writer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/ITrace2Writer.cs -------------------------------------------------------------------------------- /src/shared/Core/IniFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/IniFile.cs -------------------------------------------------------------------------------- /src/shared/Core/InputArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/InputArguments.cs -------------------------------------------------------------------------------- /src/shared/Core/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/InteropException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/InteropException.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/InteropUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/InteropUtils.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Linux/LinuxFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Linux/LinuxFileSystem.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Linux/LinuxSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Linux/LinuxSessionManager.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Linux/LinuxTerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Linux/LinuxTerminal.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Linux/Native/Glib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Linux/Native/Glib.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Linux/Native/Gobject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Linux/Native/Gobject.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Linux/Native/Libsecret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Linux/Native/Libsecret.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Linux/Native/termios_Linux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Linux/Native/termios_Linux.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Linux/SecretServiceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Linux/SecretServiceCollection.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Linux/SecretServiceCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Linux/SecretServiceCredential.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/MacOS/MacOSEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/MacOS/MacOSEnvironment.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/MacOS/MacOSFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/MacOS/MacOSFileSystem.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/MacOS/MacOSKeychain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/MacOS/MacOSKeychain.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/MacOS/MacOSKeychainCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/MacOS/MacOSKeychainCredential.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/MacOS/MacOSPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/MacOS/MacOSPreferences.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/MacOS/MacOSSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/MacOS/MacOSSessionManager.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/MacOS/MacOSSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/MacOS/MacOSSettings.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/MacOS/MacOSTerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/MacOS/MacOSTerminal.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/MacOS/Native/CoreFoundation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/MacOS/Native/CoreFoundation.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/MacOS/Native/LibC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/MacOS/Native/LibC.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/MacOS/Native/LibSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/MacOS/Native/LibSystem.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/MacOS/Native/SecurityFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/MacOS/Native/SecurityFramework.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/MacOS/Native/termios_MacOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/MacOS/Native/termios_MacOS.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Posix/GpgPassCredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Posix/GpgPassCredentialStore.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Posix/Native/Fcntl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Posix/Native/Fcntl.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Posix/Native/Signal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Posix/Native/Signal.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Posix/Native/Stat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Posix/Native/Stat.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Posix/Native/Stdio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Posix/Native/Stdio.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Posix/Native/Stdlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Posix/Native/Stdlib.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Posix/Native/Termios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Posix/Native/Termios.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Posix/Native/Unistd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Posix/Native/Unistd.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Posix/PosixEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Posix/PosixEnvironment.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Posix/PosixFileDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Posix/PosixFileDescriptor.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Posix/PosixFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Posix/PosixFileSystem.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Posix/PosixSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Posix/PosixSessionManager.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Posix/PosixTerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Posix/PosixTerminal.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/U8StringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/U8StringConverter.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/U8StringMarshaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/U8StringMarshaler.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/DpapiCredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/DpapiCredentialStore.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/Native/Advapi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/Native/Advapi32.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/Native/CredUi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/Native/CredUi.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/Native/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/Native/Kernel32.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/Native/Ole32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/Native/Ole32.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/Native/Shell32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/Native/Shell32.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/Native/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/Native/User32.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/Native/Win32Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/Native/Win32Error.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/WindowsCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/WindowsCredential.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/WindowsCredentialManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/WindowsCredentialManager.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/WindowsEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/WindowsEnvironment.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/WindowsFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/WindowsFileSystem.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/WindowsProcessManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/WindowsProcessManager.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/WindowsSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/WindowsSessionManager.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/WindowsSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/WindowsSettings.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/WindowsSystemPrompts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/WindowsSystemPrompts.cs -------------------------------------------------------------------------------- /src/shared/Core/Interop/Windows/WindowsTerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Interop/Windows/WindowsTerminal.cs -------------------------------------------------------------------------------- /src/shared/Core/NameValueCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/NameValueCollectionExtensions.cs -------------------------------------------------------------------------------- /src/shared/Core/NullCredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/NullCredentialStore.cs -------------------------------------------------------------------------------- /src/shared/Core/PlaintextCredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/PlaintextCredentialStore.cs -------------------------------------------------------------------------------- /src/shared/Core/PlatformUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/PlatformUtils.cs -------------------------------------------------------------------------------- /src/shared/Core/ProcessManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/ProcessManager.cs -------------------------------------------------------------------------------- /src/shared/Core/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Settings.cs -------------------------------------------------------------------------------- /src/shared/Core/StandardStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/StandardStreams.cs -------------------------------------------------------------------------------- /src/shared/Core/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/StreamExtensions.cs -------------------------------------------------------------------------------- /src/shared/Core/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/StringExtensions.cs -------------------------------------------------------------------------------- /src/shared/Core/TerminalMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/TerminalMenu.cs -------------------------------------------------------------------------------- /src/shared/Core/Trace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Trace.cs -------------------------------------------------------------------------------- /src/shared/Core/Trace2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Trace2.cs -------------------------------------------------------------------------------- /src/shared/Core/Trace2CollectorWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Trace2CollectorWriter.cs -------------------------------------------------------------------------------- /src/shared/Core/Trace2Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Trace2Exception.cs -------------------------------------------------------------------------------- /src/shared/Core/Trace2FileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Trace2FileWriter.cs -------------------------------------------------------------------------------- /src/shared/Core/Trace2Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Trace2Message.cs -------------------------------------------------------------------------------- /src/shared/Core/Trace2StreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/Trace2StreamWriter.cs -------------------------------------------------------------------------------- /src/shared/Core/TraceUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/TraceUtils.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Assets/Base.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Assets/Base.axaml -------------------------------------------------------------------------------- /src/shared/Core/UI/Assets/ButtonHyperlink.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Assets/ButtonHyperlink.axaml -------------------------------------------------------------------------------- /src/shared/Core/UI/Assets/Controls.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Assets/Controls.axaml -------------------------------------------------------------------------------- /src/shared/Core/UI/Assets/Images.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Assets/Images.axaml -------------------------------------------------------------------------------- /src/shared/Core/UI/AvaloniaApp.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/AvaloniaApp.axaml -------------------------------------------------------------------------------- /src/shared/Core/UI/AvaloniaApp.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/AvaloniaApp.axaml.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/AvaloniaUi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/AvaloniaUi.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Commands/CredentialsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Commands/CredentialsCommand.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Commands/DefaultAccountCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Commands/DefaultAccountCommand.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Commands/DeviceCodeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Commands/DeviceCodeCommand.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Commands/OAuthCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Commands/OAuthCommand.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Controls/AboutWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Controls/AboutWindow.axaml -------------------------------------------------------------------------------- /src/shared/Core/UI/Controls/AboutWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Controls/AboutWindow.axaml.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Controls/DialogWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Controls/DialogWindow.axaml -------------------------------------------------------------------------------- /src/shared/Core/UI/Controls/DialogWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Controls/DialogWindow.axaml.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Controls/IFocusable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Controls/IFocusable.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Controls/ProgressWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Controls/ProgressWindow.axaml -------------------------------------------------------------------------------- /src/shared/Core/UI/Controls/ProgressWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Controls/ProgressWindow.axaml.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Converters/BoolConvertersEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Converters/BoolConvertersEx.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Converters/WindowClientAreaConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Converters/WindowClientAreaConverters.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Dispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Dispatcher.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/HelperApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/HelperApplication.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/HelperCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/HelperCommand.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/RelayCommand.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/ViewModels/CredentialsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/ViewModels/CredentialsViewModel.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/ViewModels/DefaultAccountViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/ViewModels/DefaultAccountViewModel.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/ViewModels/DeviceCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/ViewModels/DeviceCodeViewModel.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/ViewModels/OAuthViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/ViewModels/OAuthViewModel.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/ViewModels/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/ViewModels/ViewModel.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/ViewModels/WindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/ViewModels/WindowViewModel.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Views/CredentialsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Views/CredentialsView.axaml -------------------------------------------------------------------------------- /src/shared/Core/UI/Views/CredentialsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Views/CredentialsView.axaml.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Views/DefaultAccountView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Views/DefaultAccountView.axaml -------------------------------------------------------------------------------- /src/shared/Core/UI/Views/DefaultAccountView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Views/DefaultAccountView.axaml.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Views/DeviceCodeView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Views/DeviceCodeView.axaml -------------------------------------------------------------------------------- /src/shared/Core/UI/Views/DeviceCodeView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Views/DeviceCodeView.axaml.cs -------------------------------------------------------------------------------- /src/shared/Core/UI/Views/OAuthView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Views/OAuthView.axaml -------------------------------------------------------------------------------- /src/shared/Core/UI/Views/OAuthView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UI/Views/OAuthView.axaml.cs -------------------------------------------------------------------------------- /src/shared/Core/UriExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/UriExtensions.cs -------------------------------------------------------------------------------- /src/shared/Core/WslUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/WslUtils.cs -------------------------------------------------------------------------------- /src/shared/Core/X509Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Core/X509Utils.cs -------------------------------------------------------------------------------- /src/shared/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Directory.Build.props -------------------------------------------------------------------------------- /src/shared/DotnetTool/DotnetTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/DotnetTool/DotnetTool.csproj -------------------------------------------------------------------------------- /src/shared/DotnetTool/DotnetToolSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/DotnetTool/DotnetToolSettings.xml -------------------------------------------------------------------------------- /src/shared/DotnetTool/dotnet-tool.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/DotnetTool/dotnet-tool.nuspec -------------------------------------------------------------------------------- /src/shared/DotnetTool/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/DotnetTool/icon.png -------------------------------------------------------------------------------- /src/shared/DotnetTool/layout.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/DotnetTool/layout.ps1 -------------------------------------------------------------------------------- /src/shared/DotnetTool/pack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/DotnetTool/pack.ps1 -------------------------------------------------------------------------------- /src/shared/Git-Credential-Manager/Git-Credential-Manager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Git-Credential-Manager/Git-Credential-Manager.csproj -------------------------------------------------------------------------------- /src/shared/Git-Credential-Manager/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Git-Credential-Manager/NOTICE -------------------------------------------------------------------------------- /src/shared/Git-Credential-Manager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Git-Credential-Manager/Program.cs -------------------------------------------------------------------------------- /src/shared/GitHub.Tests/GitHub.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub.Tests/GitHub.Tests.csproj -------------------------------------------------------------------------------- /src/shared/GitHub.Tests/GitHubAuthChallengeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub.Tests/GitHubAuthChallengeTests.cs -------------------------------------------------------------------------------- /src/shared/GitHub.Tests/GitHubAuthenticationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub.Tests/GitHubAuthenticationTests.cs -------------------------------------------------------------------------------- /src/shared/GitHub.Tests/GitHubHostProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub.Tests/GitHubHostProviderTests.cs -------------------------------------------------------------------------------- /src/shared/GitHub.Tests/GitHubRestApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub.Tests/GitHubRestApiTests.cs -------------------------------------------------------------------------------- /src/shared/GitHub.UI.Avalonia/Commands/SelectAccountCommandImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub.UI.Avalonia/Commands/SelectAccountCommandImpl.cs -------------------------------------------------------------------------------- /src/shared/GitHub/AuthenticationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/AuthenticationResult.cs -------------------------------------------------------------------------------- /src/shared/GitHub/Diagnostics/GitHubApiDiagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/Diagnostics/GitHubApiDiagnostic.cs -------------------------------------------------------------------------------- /src/shared/GitHub/GitHub.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/GitHub.csproj -------------------------------------------------------------------------------- /src/shared/GitHub/GitHubAuthChallenge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/GitHubAuthChallenge.cs -------------------------------------------------------------------------------- /src/shared/GitHub/GitHubAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/GitHubAuthentication.cs -------------------------------------------------------------------------------- /src/shared/GitHub/GitHubConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/GitHubConstants.cs -------------------------------------------------------------------------------- /src/shared/GitHub/GitHubHostProvider.Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/GitHubHostProvider.Commands.cs -------------------------------------------------------------------------------- /src/shared/GitHub/GitHubHostProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/GitHubHostProvider.cs -------------------------------------------------------------------------------- /src/shared/GitHub/GitHubOAuth2Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/GitHubOAuth2Client.cs -------------------------------------------------------------------------------- /src/shared/GitHub/GitHubResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/GitHubResources.Designer.cs -------------------------------------------------------------------------------- /src/shared/GitHub/GitHubResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/GitHubResources.resx -------------------------------------------------------------------------------- /src/shared/GitHub/GitHubRestApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/GitHubRestApi.cs -------------------------------------------------------------------------------- /src/shared/GitHub/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly:InternalsVisibleTo("GitHub.Tests")] 4 | -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Commands/CredentialsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Commands/CredentialsCommand.cs -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Commands/DeviceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Commands/DeviceCommand.cs -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Commands/SelectAccountCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Commands/SelectAccountCommand.cs -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Commands/TwoFactorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Commands/TwoFactorCommand.cs -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Controls/HorizontalShadowDivider.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Controls/HorizontalShadowDivider.axaml -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Controls/HorizontalShadowDivider.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Controls/HorizontalShadowDivider.axaml.cs -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Controls/SixDigitInput.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Controls/SixDigitInput.axaml -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Controls/SixDigitInput.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Controls/SixDigitInput.axaml.cs -------------------------------------------------------------------------------- /src/shared/GitHub/UI/ViewModels/CredentialsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/ViewModels/CredentialsViewModel.cs -------------------------------------------------------------------------------- /src/shared/GitHub/UI/ViewModels/DeviceCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/ViewModels/DeviceCodeViewModel.cs -------------------------------------------------------------------------------- /src/shared/GitHub/UI/ViewModels/SelectAccountViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/ViewModels/SelectAccountViewModel.cs -------------------------------------------------------------------------------- /src/shared/GitHub/UI/ViewModels/TwoFactorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/ViewModels/TwoFactorViewModel.cs -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Views/CredentialsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Views/CredentialsView.axaml -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Views/CredentialsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Views/CredentialsView.axaml.cs -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Views/DeviceCodeView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Views/DeviceCodeView.axaml -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Views/DeviceCodeView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Views/DeviceCodeView.axaml.cs -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Views/SelectAccountView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Views/SelectAccountView.axaml -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Views/SelectAccountView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Views/SelectAccountView.axaml.cs -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Views/TwoFactorView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Views/TwoFactorView.axaml -------------------------------------------------------------------------------- /src/shared/GitHub/UI/Views/TwoFactorView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitHub/UI/Views/TwoFactorView.axaml.cs -------------------------------------------------------------------------------- /src/shared/GitLab.Tests/GitLab.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitLab.Tests/GitLab.Tests.csproj -------------------------------------------------------------------------------- /src/shared/GitLab.Tests/GitLabAuthenticationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitLab.Tests/GitLabAuthenticationTests.cs -------------------------------------------------------------------------------- /src/shared/GitLab.Tests/GitLabHostProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitLab.Tests/GitLabHostProviderTests.cs -------------------------------------------------------------------------------- /src/shared/GitLab/GitLab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitLab/GitLab.csproj -------------------------------------------------------------------------------- /src/shared/GitLab/GitLabAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitLab/GitLabAuthentication.cs -------------------------------------------------------------------------------- /src/shared/GitLab/GitLabConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitLab/GitLabConstants.cs -------------------------------------------------------------------------------- /src/shared/GitLab/GitLabHostProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitLab/GitLabHostProvider.cs -------------------------------------------------------------------------------- /src/shared/GitLab/GitLabOAuth2Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitLab/GitLabOAuth2Client.cs -------------------------------------------------------------------------------- /src/shared/GitLab/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("GitLab.Tests")] 4 | -------------------------------------------------------------------------------- /src/shared/GitLab/UI/Assets/Images.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitLab/UI/Assets/Images.axaml -------------------------------------------------------------------------------- /src/shared/GitLab/UI/Commands/CredentialsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitLab/UI/Commands/CredentialsCommand.cs -------------------------------------------------------------------------------- /src/shared/GitLab/UI/ViewModels/CredentialsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitLab/UI/ViewModels/CredentialsViewModel.cs -------------------------------------------------------------------------------- /src/shared/GitLab/UI/Views/CredentialsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitLab/UI/Views/CredentialsView.axaml -------------------------------------------------------------------------------- /src/shared/GitLab/UI/Views/CredentialsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/GitLab/UI/Views/CredentialsView.axaml.cs -------------------------------------------------------------------------------- /src/shared/Microsoft.AzureRepos.Tests/AzureDevOpsApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Microsoft.AzureRepos.Tests/AzureDevOpsApiTests.cs -------------------------------------------------------------------------------- /src/shared/Microsoft.AzureRepos.Tests/AzureReposAuthorityCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Microsoft.AzureRepos.Tests/AzureReposAuthorityCacheTests.cs -------------------------------------------------------------------------------- /src/shared/Microsoft.AzureRepos.Tests/AzureReposBindingManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Microsoft.AzureRepos.Tests/AzureReposBindingManagerTests.cs -------------------------------------------------------------------------------- /src/shared/Microsoft.AzureRepos.Tests/AzureReposHostProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Microsoft.AzureRepos.Tests/AzureReposHostProviderTests.cs -------------------------------------------------------------------------------- /src/shared/Microsoft.AzureRepos.Tests/Microsoft.AzureRepos.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Microsoft.AzureRepos.Tests/Microsoft.AzureRepos.Tests.csproj -------------------------------------------------------------------------------- /src/shared/Microsoft.AzureRepos.Tests/UriHelpersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Microsoft.AzureRepos.Tests/UriHelpersTests.cs -------------------------------------------------------------------------------- /src/shared/Microsoft.AzureRepos/AzureDevOpsAuthorityCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Microsoft.AzureRepos/AzureDevOpsAuthorityCache.cs -------------------------------------------------------------------------------- /src/shared/Microsoft.AzureRepos/AzureDevOpsConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Microsoft.AzureRepos/AzureDevOpsConstants.cs -------------------------------------------------------------------------------- /src/shared/Microsoft.AzureRepos/AzureDevOpsRestApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Microsoft.AzureRepos/AzureDevOpsRestApi.cs -------------------------------------------------------------------------------- /src/shared/Microsoft.AzureRepos/AzureReposBindingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Microsoft.AzureRepos/AzureReposBindingManager.cs -------------------------------------------------------------------------------- /src/shared/Microsoft.AzureRepos/AzureReposHostProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Microsoft.AzureRepos/AzureReposHostProvider.cs -------------------------------------------------------------------------------- /src/shared/Microsoft.AzureRepos/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Microsoft.AzureRepos/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/shared/Microsoft.AzureRepos/Microsoft.AzureRepos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Microsoft.AzureRepos/Microsoft.AzureRepos.csproj -------------------------------------------------------------------------------- /src/shared/Microsoft.AzureRepos/UriHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/Microsoft.AzureRepos/UriHelpers.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/AssertEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/AssertEx.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/GitTestUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/GitTestUtilities.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/NullTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/NullTrace.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestCommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestCommandContext.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestCredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestCredentialStore.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestEnvironment.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestFileSystem.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestGit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestGit.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestGitConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestGitConfiguration.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestGpg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestGpg.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestHostProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestHostProvider.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestHostProviderRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestHostProviderRegistry.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestHttpClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestHttpClientFactory.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestHttpMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestHttpMessageHandler.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestOAuth2Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestOAuth2Server.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestOAuth2WebBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestOAuth2WebBrowser.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestSessionManager.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestSettings.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestStandardStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestStandardStreams.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/Objects/TestTerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/Objects/TestTerminal.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/PlatformAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/PlatformAttributes.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/RestTestUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/RestTestUtilities.cs -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/TestInfrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/TestInfrastructure.csproj -------------------------------------------------------------------------------- /src/shared/TestInfrastructure/TestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/shared/TestInfrastructure/TestUtils.cs -------------------------------------------------------------------------------- /src/windows/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/windows/Directory.Build.props -------------------------------------------------------------------------------- /src/windows/Installer.Windows/Installer.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/windows/Installer.Windows/Installer.Windows.csproj -------------------------------------------------------------------------------- /src/windows/Installer.Windows/Setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/windows/Installer.Windows/Setup.iss -------------------------------------------------------------------------------- /src/windows/Installer.Windows/layout.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-ecosystem/git-credential-manager/HEAD/src/windows/Installer.Windows/layout.ps1 --------------------------------------------------------------------------------