[GitHub] 깃허브 Repository 복사하기 (clone)
·
프로그램/ETC
안녕하세요.GitHub Repository 복사하는 방법에 대해 포스팅합니다.1. main mirror clone 하기git clone --mirror {git repository url}ex) git clone --mirror https://github.com/JeongSeongSoo/master.git2. new repository 연결하기# 폴더 경로로 이동cd {repository.git}# 새로운 레포지토리에 연결git remote set-url origin {new repository url}ex) git remote set-url origin https://github.com/JeongSeongSoo/new.git3. new repository push 하기git push --mirror 정..