나의 개발 성장일지

깃허브 연동하기 본문

개인 공부/스프링부트 개념정리

깃허브 연동하기

qkq5821 2022. 11. 15. 01:35

1. github 회원가입

https://github.com/

 

Build software better, together

GitHub is where people build software. More than 40 million people use GitHub to discover, fork, and contribute to over 100 million projects.

github.com

 

2. git 설치

https://git-scm.com/downloads

 

Git - Downloads

Downloads Mac OS X Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific

git-scm.com

3. 내 프로젝트 git 연동

3-1 로컬저장소 설정

 

 3-2 깃설정

 

 

 

 

 3-3 Repository생성 및 깃허브 주소 복사

 

 

 

 

3-4 로컬작업폴더와 깃 연결하기 및 내프로젝트 업로드

 

 

 

 

 

 

 

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

 

좋아요1
공유하기
게시글 관리
구독하기
 
 
 
 

'개인 공부 > 스프링부트 개념정리' 카테고리의 다른 글

HTTP연결방식 2  (0) 2022.11.15
Http연결방식 1  (0) 2022.11.15
MySQL설정하기  (0) 2022.11.15
의존성 설정하기  (0) 2022.11.14
환경설정)블로그만들기  (0) 2022.11.14