본문 바로가기

Project/Spring

[프로젝트]_스프링과 깃허브 연동

https://github.com/

 

GitHub: Let’s build from here

GitHub is where over 100 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 fea...

github.com

로그인 - 내정보 - Your repositories - New - Repository name 설정 후 Create repository 클릭 - 해당 프로젝트의 URL 복사

STS로 이동 - Window - Show View - Other - git 검색 - Git Repositories 클릭

Clone a Git repository 클릭 - URI에 복사해 둔 주소 붙여넣기 - User와 Password 입력 - Next - 브랜치 선택(User에는 Git 아이디, Password에는 Git Token 입력)

 

만약 Branch가 뜨지 않는다면 Git CMD 관리자모드로 실행 - 아래 코드 입력 후 브랜치 선택하면 됨

echo "# test" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/mh030128/test.git
git push -u origin main
git remote add origin https://github.com/mh030128/test.git
git branch -M main
git push -u origin main

원하는 경로로 설정 - Finish 클릭 - 생성확인

 

해당 프로젝트 우클릭 - Team - Share Project - Repositories에서 생성한 git 선택 - Finish

해당 프로젝트 우클릭 - Team - Commit(Ctrl + #) - Staged Changes에 파일들이 올라와야 함

++두개 연속으로 된 것을 클릭하면 Unstaged Changed에 있는 파일들을 Staged Changes에 올라가게 하는 것으로 클릭 후 -

Commit Message에 내용 작성 한 뒤 Commit and Push 클릭 - close (정상적으로 push 성공)

GitHub 이동 후 확인

 

'Project > Spring' 카테고리의 다른 글

[프로젝트]_스프링01  (0) 2024.08.21
[스프링]_환경설정  (0) 2024.08.19