본문 바로가기
Programming/Git

[git] Repository 복사하기(git clone --mirror)

by 째스터 2021. 8. 16.
728x90

복사할 repository를 새로운 repository로 복제(mirroring)하려면 다음과 같다.

git clone --mirror <복사할 repository>  

cd <새 repository 위치>
git remote set-url --push origin <새 repository>  

git fetch -p origin
git push --mirror  
728x90

댓글