본문 바로가기
스프링부트

스프링부트 강좌 7강(블로그 프로젝트) - Git설치 및 Github연동

by SAMSUNG CLOUD-OKY 2020. 9. 8.
반응형

 

https://www.youtube.com/watch?v=O13vCHjKKuk&list=PL93mKxaRDidECgjOBjPgI3Dyo8ka6Ilqm&index=8&t=0s

 

 

1. github 회원가입 (https://github.com)

 

 

 

2. git 설치 (https://git-scm.com/downloads)

 

 

 

 

 

3. 내 프로젝트 git 연동

- 해당 blog 프로젝트 폴더로 이동 (C:\workspace\blog)

- 마우스 오른쪽 -> Git Bash Here

git init
git add .
git commit -m "환경세팅완료 v1"
git remote add origin 주소
git push origin master

 

- Cmd 창에서 -> git init 입력

 

 

- git add .    (해당 폴더내 모든 파일을 Git 에 추가한다)

 

 

 

 

- git commit -m "환경셋팅 완료 v1"

 

 

- github 사이트 이동 -> New 리포지토리 생성 -> Springboot-JPA-Blog

  : 해당 주소 복사

 

 

- 내PC Blog 폴더와 Github 리포지토리 연동

 

 

- 메일 계정 등록해야 Push 제대로 됨

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

   : git config --global user.name "user01"

 

 

 

 

- git push origin master

 

 

- github 정상 등록 확인

반응형

댓글