본문 바로가기

학습 내용 정리/git

대용량 프로젝트 git 올리기

728x90

사용한 기기

MacOS : 13.3.1 (a)(22E772610a)

 

home brew 설치 : https://brew.sh/index_ko

git 설치 : https://git-scm.com/book/ko/v2/%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-Git-%EC%84%A4%EC%B9%98

 

home brew 는 상당히 시간이 오래 걸리니 10분 정도는 가볍게 기다려 보자

 

git init

git add . 

git commit -m "message"

git remote add origin "github_repository_url"

git push -u origin master

git config --global user.name "username"

git config --global user.email "email@email.com"

Username 깃허브 아이디 입력

Password 토큰 입력 

 

* 오류 시 master branch 생성

git checkout -b 'master'

 

master branch 참고 자료 : https://snupi.tistory.com/150

github 토큰 생성 참고 자료 : https://hyeo-noo.tistory.com/184

업로드 완료

'학습 내용 정리 > git' 카테고리의 다른 글

node.js npm git 배포  (0) 2023.06.13
github 다운로드  (0) 2023.05.18
github repository에 팀원 추가하기  (0) 2023.05.18
Git 기초 특강  (1) 2023.05.15
git 이전 commit으로 돌아가기  (1) 2023.04.27