AWS CodeCommit The requsted URL returned error 403

https://docs.aws.amazon.com/codecommit/latest/userguide/troubleshooting-ch.html [credential] helper = helper = !aws --profile CodeCommitProfile codecommit credential-helper $@ UseHttpPath = true 이렇게 비어있는 Helper 설정을 넣어서 해결 했는데 이게 해결이 정확히 된 건지 모르겠다.

0 Comments

Install Gitlab with Nginx(not bundle) on Ubuntu 18.04

의존 패키지 설치 sudo apt-get update sudo apt-get install -y curl openssh-server ca-certificates tzdata perl gitlab-ee package repository 추가 gitlab의 최신 버전을 설치하기 위해 repository를 추가합니다. curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh | sudo…

0 Comments

aws instance에서 shell script로 codecommit에 push 하기

AWS Intance에서 shell script를 cron에 등록하여 자동으로 code push를 하도록 만들고 싶었다. 대략 아래와 같은 간단한 script를 만들어봤다. #!/bin/sh BUCKET_PATH="s" AWS="/usr/local/bin/aws" rm -rf /tmp/project_code ${AWS} s3 cp ${BUCKET_PATH}/project.tar.gz /tmp/project.tar.gz cd…

0 Comments

AWS CodeCommit

AWS Configure profile aws configure --profile "your username" https://docs.aws.amazon.com/ko_kr/cli/latest/userguide/cli-configure-profiles.html git clone 자격 증명 문제 https://docs.aws.amazon.com/ko_kr/codecommit/latest/userguide/troubleshooting-ch.html#troubleshooting-macoshttps Setup for HTTPS users using Git credentials https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-gc.html#setting-up-gc-iam 로컬 환경에서 codecommit 소스 클론하기 인스턴스가 아니라…

0 Comments

Git 기초 명령어와 사용법 정리

Git 이란 Git이 보편화 되기 전에는 Git에 대한 개념을 잡기조차 어려웠습니다. 하지만, 요즘에는 모든 프로젝트에 형상관리 개념은 기본입니다. 개발자 분들은 익히 아시다시피 프로젝트라는 것이 뚝딱뚝딱 한번에 '짠~!' 하고 만들어지는 것이…

0 Comments

우분투(Ubuntu) 16.04(32bit) Gitlab install with apache2

집에서 개인 서버를 운영하는데 낡은 노트북으로 서버를 사용하다 보니 Gitlab에서 제공하는 64 bit용 설치파일을 사용할 수가 없었습니다.. 결국 Step-by-Step으로 Gitlab을 설치해보기로 합니다. 원본 가이드는 gitlab 공식 페이지에서 제공하는 다음 사이트를…

0 Comments