

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# 문제 해결
<a name="codecatalyst-troubleshoot"></a>

다음은 CodeCatalyst AWS Toolkit for Visual Studio에서 Amazon Q로 작업할 때 알려진 문제를 해결하기 위한 문제 해결 주제입니다.

**Topics**
+ [자격 증명](#codecatalyst-troubleshoot-credentials)

## 자격 증명
<a name="codecatalyst-troubleshoot-credentials"></a>

CodeCatalyst에서 git 기반 리포지토리를 복제하려고 할 때 보안 인증 정보를 요구하는 대화 상자가 표시되면 **AWS CodeCommit 보안 인증 도우미**가 전체적으로 구성되어 CodeCatalyst와 간섭이 발생할 수 있습니다. AWS CodeCommit 보안 인증 도우미에 대한 자세한 내용은 [AWS CodeCommit 사용 설명서의 AWS CLI 보안 인증 도우미를 사용하여 Windows에서 CodeCommit 리포지토리에 대한 HTTPS 연결 단계 설정을](https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-https-windows.html) 참조하세요. *AWS CodeCommit* 

**AWS CodeCommit 보안 인증 도우미**가 CodeCommit URL만 처리하도록 제한하려면 다음 단계를 완료하세요.

1. `%userprofile%\.gitconfig`에서 글로벌 git 구성 파일을 엽니다.

1. 다음 섹션을 파일에 추가하세요.

   ```
                           [credential]
                               helper = !aws codecommit credential-helper $@
                               UseHttpPath = true
   ```

1. 해당 섹션을 다음으로 변경하세요.

   ```
                           [credential "https://git-codecommit.*.amazonaws.com"]
                               helper = !aws codecommit credential-helper $@
                               UseHttpPath = true
   ```

1. 변경 내용을 저장한 다음 단계를 완료하여 리포지토리를 복제하세요.