Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- codecommit
- 리워드앱
- MongoEngine
- python3
- MongoDB
- Container
- S3
- 앱테크
- Python
- 리뷰
- 재테크
- 커피머니불리기
- 도커
- VPC
- mininet
- aws codecommit
- 포인트앱
- 후기
- 토스카드
- docker
- docker network
- 실사용
- AWS
- Linux
- clone
- built-in
- namespace
- network
- 하나머니
- DocumentDB
Archives
- Today
- Total
ㅍㅍㅋㄷ
Github 에서 AWS CodeCommit 으로 마이그레이션 - 어렵지 않아요 본문
Github 에서 CodeCommit 으로 마이그레이션 해보자
CodeCommit 은 AWS가 출시한 Private git repository 서비스 이다. 자세한 설명은 아래 링크
만약 회사의 인프라가 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