docker 실행 시 “no such file or directory”

Docker에서 다른 날과 변함없이 up!!을 해주는데 에러가 뚜둔! ㅠㅠ

standard_init_linux.go:211: exec user process caused "no such file or directory"

도커 문제인가 싶어서 이래저래 찾다보니 개행 line ending 문제로 안되는 것이었다!
Windows는 CR(Carriage Return, \r), LF(Line Feed, \n)
Unix & Mac 은 LF …

깃 설정을 변경해준다.

git config --global core.autocrlf input 
git config --global core.eol lf

변경한 파일이 있다면 설정을 변경해도 에러가 날 수 있는데
변경한 파일 discard하거나 저장소 지웠다가 다시 clone하고
docker build 하면 된다!

refusing to merge unrelated histories

git pull origin master

깃 풀을 실행해서 성공적인 결과가 리턴되길 바랬으나…

fatal: refusing to merge unrelated histories

오류가 ! 뚜둔!

git pull origin branchname --allow-unrelated-histories

위 명령어를 실행하면 해결된다.
기본적으로 상관없는 브랜치끼리 머지하는 것을 허용하지 않는데
‘–allow-unrelated-histories ‘ 옵션으로 허용을 해줘서 오류를 발생하지 않게 하는 것이다.

AWS CodeCommit으로 Git 실행하기

$git init
$git add some_files.txt
$git commit -m 'init project'
$git status
$git config --global credential.helper "!aws codecommit credential-helper $@"
$git config --global credential.UseHttpPath true
$git clone https://git-codecommit.ap-northeast-2.amazonaws.com/v1/repos/my-repo-name

$ aws configure
AWS Access Key ID [None]: YOUR-KEY--AXXXXXXXXXXXXXXXXXQ
AWS Secret Access Key [None]: YOURKEY---XdsfsdfsdX+vDFDSFSDF+Stestestsetsetest/yz
Default region name [None]: northeast-2
Default output format [None]: text

 가이드: https://docs.aws.amazon.com/ko_kr/codecommit/latest/userguide/setting-up-https-windows.html#setting-up-https-windows-credential-helper

init 취소할 때 .git 삭제

$rm -rf .git