Gitパートナーになる


Collaboratorを招待


Repository > Settings > Collaborators > Add people

招待する人のEメールを入力して選択し、上の協力者を選択します.

招待を受けた人は以下のEメールを受け取り、View Inventationで招待を受けた後、ライブラリのパートナーと協力することができます.

招待されたリポジトリへのリモート接続


招待されたリポジトリの[コード]タブで、右上隅にある緑色のエンコーディングボタンをクリックして、リポジトリのアドレスをコピーします.
$ git remote -v									    # 원격 연결 상태 확인
origin  https://github.com/pagii/test.git (fetch)
origin  https://github.com/pagii/test.git (push)

$ git remote add pmorigin '복사한 레포지토리 주소'		# 레포지토리에 원격 연결
$ git remote -v									    # 원격 연결 후 확인
origin  https://github.com/pagii/test.git (fetch)
origin  https://github.com/pagii/test.git (push)
pmorigin	'복사한 레포지토리 주소' (fetch)
pmorigin	'복사한 레포지토리 주소' (fetch)

$ git clone '복사한 레포지토리 주소'					# 현 위치에 레포지토리 코드 복제
$ git branch '생성할 브랜치 이름'						# 브랜치 생성
$ git checkout '생성한 브랜치 이름'					# 생성한 브랜치로 이동
Switched to branch '생성된 브랜치 이름'

$ git branch										# 이동한 브랜치 확인
  '이동한 브랜치 이름'
  main

参考資料

  • https://velog.io/@summer_luna_0/Git-branch-clone%EB%B6%80%ED%84%B0-git-flow%EA%B9%8C%EC%A7%80