

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

# Git 리포 URL 분리
<a name="studio-updated-git-detach"></a>

이 섹션에서는 Amazon SageMaker AI 도메인(도메인) 또는 사용자 프로필에서 Git 리포지토리 URL을 분리하는 방법을 보여줍니다. AWS Command Line Interface (AWS CLI) 또는 Amazon SageMaker AI 콘솔을 사용하여 리포URLs을 분리할 수 있습니다.

## 를 사용하여 Git 리포지토리 분리 AWS CLI
<a name="studio-updated-git-detach-cli"></a>

도메인 또는 사용자 프로필에서 모든 Git 리포지토리 URL을 분리하려면 먼저 빈 코드 리포지토리 목록을 전달해야 합니다. 이 목록은 `update-domain`또는 `update-user-profile`명령에서 `JupyterLabAppSettings`파라미터의 일부로 전달됩니다. Git 리포지토리 URL을 하나만 분리하려면 원하는 Git 리포지토리 URL 없이 코드 리포지토리 목록을 전달합니다.

### Amazon SageMaker AI 도메인에서 분리
<a name="studio-updated-git-detach-cli-domain"></a>

다음 명령은 도메인에서 모든 Git 리포지토리 URL을 분리합니다.

```
aws sagemaker update-domain --region {{region}} --domain-name {{domain-name}} \
    --domain-settings JupyterLabAppSettings={CodeRepositories=[]}
```

### 사용자 프로필에서 분리
<a name="studio-updated-git-detach-cli-userprofile"></a>

다음 명령은 사용자 프로필에서 모든 Git 리포지토리 URL을 분리합니다.

```
aws sagemaker update-user-profile --domain-name {{domain-name}} --user-profile-name {{user-name}}\
    --user-settings JupyterLabAppSettings={CodeRepositories=[]}
```