Troubleshooting
The following are troubleshooting topics for addressing known issues when working with Amazon CodeCatalyst from the Amazon Toolkit for Visual Studio with Amazon Q.
Topics
Credentials
If you encounter a dialog asking for credentials when attempting to clone a git-based repository from CodeCatalyst, your Amazon CodeCommit Credential helper may be configured globally, causing interference with CodeCatalyst. For additional information about the Amazon CodeCommit credential helper, see the Set up steps for HTTPS connections to Amazon CodeCommit repositories on Windows with the Amazon CLI credential helper section of the Amazon CodeCommit User Guide.
To limit the Amazon CodeCommit Credential helper to handling only CodeCommit URLs, complete the following steps.
open the global git config file in:
%userprofile%\.gitconfigLocate the following section in your file:
[credential] helper = !aws codecommit credential-helper $@ UseHttpPath = trueChange that section to the following:
[credential "https://git-codecommit.*.amazonaws.com"] helper = !aws codecommit credential-helper $@ UseHttpPath = trueSave your changes, then complete the steps to clone your repository.