프레임워크/Spring, Spring Boot

[메타코딩] 스프링부트 강좌 7강(블로그 프로젝트) - Git설치 및 Github연동

고용인 2022. 7. 21. 18:42

1. github 회원가입

https://github.com/

 

GitHub: Where the world builds software

GitHub is where over 83 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat...

github.com

 

2. git 설치

https://git-scm.com/downloads

 

Git - Downloads

Downloads macOS 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 exp

git-scm.com

 

3. 내 프로젝트 git 연동

프로젝트 경로로 이동하여 Git Bash Here를 클릭

 

아래 코드를 순차적으로 입력합니다.

이대 주소에는 github에서 신규 repository를 생성 후 해당 주소를 붙여줍니다.

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

 

 

강의 주소 : https://youtu.be/O13vCHjKKuk