위로 아래

Local 저장소 설정

Local 저장소로 쓸 폴더 생성

 

git bash를 열어서 해당 레파지토리 접근

cd 경로

 

git 초기설정

git init

 

유저 설정

git config --global user.name "gaesol2"
git config --global user.email "gaesol@tistory.com"

 

 

 

sts4 연결

window -> perspective -> git

 

Clone a Git repository

 

Location URI에 GitHub Repository 주소 붙여넣기

 

Authentication에 User, Password 입력

 

branch선택

 

Local 저장소 선택

 

우클릭 -> import project

 

perspective -> Java

 

새로 들어온 프로젝트 우클릭 -> configure -> add gradle nature

 

gradle -> refresh

 

 

 

 

로컬 저장소에 commit

java perspective에서 작업하다가

프로젝트 우클릭 -> Team -> Share Project -> Local 저장소 선택

 

프로젝트 우클릭 -> Team -> Commit

 

초록색 ++클릭 -> Commit Mesaage입력 (버전 관리를 위해 알아볼 수 있도록) -> Commit

 

프로젝트 우클릭 -> Push to origin

 

 

 

https://proglish.tistory.com/97

 

Github 협업 정리(4) - Pull & Push 설정

1.지역서버에서는 Master에서 작업하지만 원격에는 나의 branch에 Push한다 Pull을 할때는 원격에 Master에서 가져온다 Push / Pull 대상이 다르다. 2. fetch 설정하기 - 팀원은 처음에 clone을 했기때문에 origin

proglish.tistory.com

https://velog.io/@aonee/%EC%B4%88%EC%8B%AC%EC%9E%90%EB%A5%BC-%EC%9C%84%ED%95%9C-Github-%ED%98%91%EC%97%85%EB%B0%A9%EB%B2%959-Eclipse-github4-%ED%98%91%EC%97%85

 

초심자를 위한 Github 협업방법(9)-Eclipse github(4)-협업

1\. 협업방식 적용 이유2\. 장점1\. Issue2\. Branch 생성 및 작업3\. Commit & push4\. Pull request (=PR)5\. 코드리뷰6\. Merge7\. Checkout branch develop8\. Pull9\. 작업이 끝난 B

velog.io