카테고리 없음

Git Eclipse 연동

yoonhoou 2022. 3. 2.
728x90

 

 

 

1. Git

 

Repository 생성

 

 

 

 

2. Eclipse

 

프로젝트 생성

 

 

 

jar 파일 프로젝트 워크벤치에 추가

 

 

 

프로젝트 우클릭 -> Team -> Share Project

 

 

 

 

 

 

3. Git bash

 

 

$ git status

 

 

git pull origin master - pull 해오기

 

 

$ git remote add origin (주소) - 리모트 저장소 연결

 

 

git add . - untracked파일과 modified파일을 staging area에 올리고 commit될 준비

 

 

 

git commit - commit을 하면 staging area의 정보를 git directory에 저장

 

 

git push - origin에 master를 push

 

 

push 완료

댓글