[깃] 빗버킷 파이프라인으로 AWS ECR 및 Lambda에 배포

image: atlassian/default-image:4 pipelines: tags: ecr-release-*: - step: name: Build Docker Image and Push to AWS ECR size: 2x script: # define tag - TAG=$(date +%Y%m%d) # build the image - DOCKER_BUILDKIT=1 docker build -t $IMAGE:$TAG . # use the pipe to push the image to AWS ECR - pipe: atlassian/aws-ecr-push-image:2.0.0 variables: AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY AWS_SECRET_ACCESS_KEY: $AWS..

[깃] 자주 쓰는 명령어

설정 확인 (--list) git config -l 설정에 사용자 이름 및 이메일 추가 (--global 옵션을 추가하면 사용자의 모든 저장소에 적용) git config user.name "{name}" git config user.email "{email}" 현재 상태 확인 (수정된 파일 확인) git status 브랜치 목록 확인 git branch 브랜치 이동 git checkout {branch} 브랜치 생성 후 이동 git checkout -b {branch} 변경된 파일들을 모두 스테이징 영역에 추가 git add . 스테이징 영역에 있는 변경사항을 커밋 git commit -m "{message}" 푸시 git push {remote repository} {branch} 원하는 커밋으로 돌..

IntegerString
'깃' 카테고리의 글 목록