DevBoi

[Spring boot] 프로젝트 git upload 하기 본문

Develop

[Spring boot] 프로젝트 git upload 하기

HiSmith 2021. 6. 16. 23:27
반응형

이제 자기 프로젝트를 원격저장소 and 다른사람들과 팀웤을 이룰때 주로 쓰는 협업툴을 사용해서 올릴 예정이다.

git!!

 

대충 이런 프로젝트에서, git bash를 오른쪽 버튼 눌러서열어준다.

 

 git init

$ git add .

$ git commit -m "first commit"

$ git remote add origin https://github.com/Realcheese94/DateBlog.git (이 주소는 git new repository 하게 되면, 나오는 주소이다.)

 

 

Realcheese94/DateBlog

Spring boot 기반 DateBlog. Contribute to Realcheese94/DateBlog development by creating an account on GitHub.

github.com

 

 

 

$ git push origin master

 

이걸로 저장소에 push 까지 완료 !!

 

다음에는 소스트리를 사용해서, 쉽게 gui 기반으로 사용하는걸 공부해야겠다.

사실 ... 소스트리를 더 많이 쓸듯..

 

반응형