AWS CodeCommiit(직접 필기1)
2501 단어 CodeCommitAWS
· 사용자 이름
aws_cli_user
・구역us-east-1
창설2 Access Key, Secret Access Key 저장
3CodeCommit에 창고 만들기
4 자신의 컴퓨터에 Giit 가입
단말기
# ローカルにaws cliを入れる
katoatsushi$ pip install awscli --upgrade --user
# 設定
katoatsushi$ aws configure --profile CodeCommitUser
AWS Access Key ID [None]: ASDFGHJKIUYTRFGHJKUYTGFGH
AWS Secret Access Key [None]: sdfgtyujkj/+tgh/mjyRestdH&^FGHJ
Default region name [None]: us-east-1
Default output format [None]: json
katoatsushi$ git config --global credential.helper '!aws --region us-east-1 --profile aws_cli_user codecommit credential-helper $@'
katoatsushi$ git config --global credential.UseHttpPath true
그다음에 git clone으로 떨어져요.그다음에 푸시.
단말기
katoatsushi$ git clone https://git-codecommit.us-east-1.amazonaws.com/v1/repos/go-sample-master
Cloning into 'go-sample-master'...
warning: You appear to have cloned an empty repository.
katoatsushi$ cd ~/sample-repo && touch main.go
katoatsushi$ git add .
katoatsushi$ git commit -m"first commit"
katoatsushi$ git push origin master
확인 후push를 잘 완성했습니다.
다음은 CodeDeploy, CodePipeline, CodeCommiit를 사용한 자동 설계
Reference
이 문제에 관하여(AWS CodeCommiit(직접 필기1)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/gonza_kato_atsushi/items/69c0f45a4c7f3856f15e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)