반응형

git repository mirroring

  • git 저장소(repository)를 커밋로그 포함, 그대로 옮기는 방법
  • 아래 단계로 진행한다.

1. 원본 저장소(A)를 복사(mirroring)한다.

$ git clone --mirror [원본 저장소 경로] <또는 이름>

2. 클론한 디렉토리 안으로 이동

$ cd [원본 저장소 이름].git

3. 새로 이동할 원격 저장소(B) 경로 지정

$ git remote set-url --push origin [이동할 원격 저장소]

4. 새 원격 저장소로 push

$ git push --mirror

이때, 입력하는 Password는 github 또는 bitbucket 비번이 아닌 토큰값입니다.

반응형

+ Recent posts