형상관리/Git
협업한 repository 내 github repository 로 가져오기
jungmin.park
2023. 11. 17. 16:00
1. git clone --mirror old-repository.git(옮기고 싶은 git주소)
2. cd old-repository
3. git remote set-url --push origin new-repository.git(새로운 git주소)
4. git push --mirror