본문 바로가기
Git

터미널로 GitHub에 Commit하기

by print_soo 2022. 5. 23.

0. 커밋할 폴더 또는 파일을 우클릭하고 폴더에서 새로운 터미널 열기 클릭

 

 

 

1. Git 초기화 설정으로 git 버전관리 상태로 만들기

 

git init

 

 

 

2. 스테이징 - 폴더 또는 파일들을 gitdl 추척할 수 있게 올리는 것

 

git add .

 

 

 

3. GitHub에서 새로운 원격 저장소를 만들어 Git이랑 연결하기

 

a. GitHub ID 등록

 

git config --global user.name 본인ID

 

 

b. GitHub E-mail 등록

 

git config --global user.email 본인email

 

c. GitHub 저장소 연결

 

git remote add origin 본인 원격저장소 주소

 

 

 

4. Commit 하기

 

git commit -m "메세지 내용"

 

 

 

5. Psuh 하기

 

git push origin master