본문 바로가기
개발/AWS

AWS CodeCommit Migration 테스트(from Github)

by 궁즉변 변즉통 통즉구 2022. 2. 24.
반응형

Github의 소스를 CodeCommit으로 마이그레이션 하는 방법

 

- CodeCommit메뉴에서 빈 리파지토리 생성

 

- 생성된 리파지토리의 URL을 복제하여 로컬로 Clone 실행

git clone https://git-codecommit.ap-northeast-2.amazonaws.com/v1/repos/springboot-test

 

- Github에서 Migration 할 리파지토리의 URL 복제

 

- Github의 소스를 저장할 디렉토리 생성하고, git clone --mirror 수행

mkdir github-migration
git clone --mirror https://github.com/xxxx/springboot-jsp.git github-migration

 

- github-migration 디렉토리로 이동하여 git push를 실행하면서 저장 할 리파지토리를 CodeCommit의 URL로 지정하여 수행

cd github-migration
git push https://git-codecommit.ap-northeast-2.amazonaws.com/v1/repos/springboot-test --all

- CodeCommit 관련 기본 설정 참조(https://happy-jjang-a.tistory.com/89)

 

- CodeCommit에 접속해서 Push된 코드 확인

 

반응형

댓글