Repository 복사하기
시작 전 준비
•
기존 repository: https://github.com/VeriCras/old-repo.git
•
새 repository: https://github.com/VeriCras/new-repo.git
실행 후 결과
•
모든 branch 별 commit 및 tag 내용 그대로 복사
•
github 사용자는 그대로 연결됨
•
private repo 도 가능
방법
# 기존 Repository 내려받기
git clone --mirror https://github.com/VeriCras/old-repo.git
# 내려받은 Repository 폴더로 이동
cd old_repo.git/
# 현재 Repository 주소를 신규 Repository 주소로 변경
git remote set-url --push origin https://github.com/VeriCras/new-repo.git
# 변경된 상태를 Push
git push --mirror
Bash
복사
ⓒ VeriCras 2024
vericras@gmail.com