ㅍㅍㅋㄷ

Github 에서 AWS CodeCommit 으로 마이그레이션 - 어렵지 않아요 본문

IT/AWS

Github 에서 AWS CodeCommit 으로 마이그레이션 - 어렵지 않아요

클쏭 2016. 5. 13. 19:05

Github 에서 CodeCommit 으로 마이그레이션 해보자


CodeCommit 은 AWS가 출시한 Private git repository 서비스 이다. 자세한 설명은 아래 링크

   * AWS CodeCommit 어렵지 않아요


만약 회사의 인프라가 AWS 기반으로 운영된다면 CodeCommit은 소스 관리 툴로서 나름 적절한 대안이 될 것으로 보인다. 

그렇다면 기존 사용하던 사내 git 서버 (또는 github) 에서 CodeCommit 으로 마이그레이션 하는 방법을 알아보자.



먼저 CodeCommit을 사용하기 위한 기본 설정은 해당 링크에서 참고 :  AWS CodeCommit 어렵지 않아요







1. 기존 git repository 와 동일한 이름으로 CodeCommit에 repository를 생성한다. 




2. 기존 git repository 에서 소스를 clone 해서 local 에 내려 받는다.


root@~~# git clone --mirror some-URL/REPO.git my-copy

Cloning into bare repository 'my-copy' ...

remote: Counting objects: 20, done.

....(중략)



3. git push 로 CodeCommit 으로 올리자. 


root@~~# git push http://git-codecommit.us-east-1.amazonaws.com/v1/repos/new-repo --all




[참고]

  • http://docs.aws.amazon.com/codecommit/latest/userguide/how-to-migrate-repository.html


'IT > AWS' 카테고리의 다른 글

AWS S3에서 Glacier로 자동 백업  (0) 2016.05.20
AWS Glacier는 뭐지? - AWS S3 와 Glacier 장단점 비교  (2) 2016.05.16
AWS CodeCommit 어렵지 않아요  (3) 2016.05.13
AWS Storage Gateway 설치  (0) 2016.04.28
AWS Storage Gateway  (0) 2016.04.27
Comments