git의 3가지 영역 : 작업 영역, 인덱스, 헤드로 나뉩니다.

 

 

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

멋진 노을을 사진을 찍어 보관하는 것과 같이 소스코드를 사진을 찍어 보관하는 것(스냅샷)

 

강의 주소 : https://youtu.be/9Nk1a6UMAqo

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

- 5강의 마지막 MySQL 연결에 대한 강의

 

필자는 application.properties 였던 파일을 application.yml 파일로 변경하고 아래 강의를 따라했습니다.

 

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

- MySQL 한글 설정 및 연결


아래 주소를 참조

https://getinthere.tistory.com/17

 

스프링부트 with JPA 블로그 3강 - MySQL 한글 설정 및 연결

1. MySQL 한글 설정 my.ini 파일 MySQL 재시작 [client] default-character-set=utf8 [mysql] default-character-set=utf8 [mysqld] collation-server = utf8_unicode_ci init-connect='SET NAMES utf8' init_conn..

getinthere.tistory.com

 

 

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

+ Recent posts