작업/git(5)
-
22.03.24 Kfood 프로젝트 GitHub에 올리기
https://www.lainyzine.com/ko/article/how-to-set-git-repository-username-and-email/ Git 최초 설정: 사용자 이름과 이메일 설정하는 방법 Git 저장소에 커밋할 때 이름과 이메일이 기록되며, 이 이메일은 GitHub 사용자와 연결할 때도 사용됩니다. 이 글에서는 커밋에 기록되는 사용자 이름과 이메일을 설정하는 방법을 소개합니다. www.lainyzine.com 용량이 딸려서 fatal: the remote end hung up unexpectedly 가 뜸 100GB * 1024 * 1024 한 값을 git config에 수정해줌. https://bongbongreview.tistory.com/94 Git 사용간 fatal: the rem..
2022.03.24 -
22.02.11 Git clone해온 레포지토리 수정해서 내 GitHub에 통째로 다시 올리기
https://programmerah.com/git-error-refname-refs-heads-master-not-found-40002/ [Solved] Git error: refname refs/heads/master not found | ProgrammerAH programmerah.com # 원작자의 Git Repository와의 연결 해제 git remote remove origin # 하고 .git 폴더들 다 삭제 git remote -v # 연결된 레포지토리 확인 새 레포지토리 만들되 README.md 없애고 만들자 git branch main # main이란 브랜치를 만듦 이게 default임 git checkout main # 그 브랜치로 이동함 git pull origin main # ..
2022.02.11 -
22.01.12 gitlab에서 github로 이사하기 2022.01.12
-
21.11.27 Bash shell 에서 React 배포
내가 만든 사이트 도메인 : elice-kdt-3rd-vm-091.koreacentral.cloudapp.azure.com (7일짜리라서 7일 뒤에 사라짐) $ ssh {엘리스에서 준 ID}@{엘리스에서 받은 도메인} $ password : {엘리스에서 준 비밀번호 입력} $ sudo apt-get update #우분투에서 프로그램을 다운받는 프로그램 $ sudo apt-get install -y build-essential $ sudo apt-get install curl $ curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash - $ sudo apt-get install -y node.js $ sudo npm install -g yarn $ s..
2021.11.27 -
21.11.12 git 시작
add +버튼 -> 제목 정하기 -> commit -> push
2021.11.12