-
Notifications
You must be signed in to change notification settings - Fork 4
1. 협업 시작하기
Juyeong Lee edited this page Sep 11, 2020
·
1 revision
-
repository 우측 상단
Fork
버튼 클릭
조금 기다리면[본인계정]/2020-dgu-fest
라는 repository가 새로 생긴다.
아래쪽에는forked from JuYeong0413/2020-dgu-fest
라는 문구가 조그맣게 뜸 -
[본인계정]/2020-dgu-fest
라는 repository에서 초록색Code
버튼을 누르면Clone with HTTPS
라는 제목으로 창이 하나 표시되는데, 아래에 보이는 url을 복사하기 -
본인 컴퓨터의
Django
프로젝트를 모아두는 폴더(django_workspace)에서 마우스 우클릭 후Git Bash
열기
$ git clone [복사한 url 붙여넣기]
-
upstream
설정
보통Fork
한 본인의 repository([본인계정]/2020-dgu-fest
)는origin
, 원본 repository(JuYeong0413/2020-dgu-fest
)는upstream
이라고 칭한다.
$ cd 2020-dgu-fest/
로 우리 프로젝트 폴더에 들어온 다음
$ git remote add upstream https://github.com/JuYeong0413/2020-dgu-fest.git
을 입력해서 upstream
을 설정해준다.