티스토리 뷰
1. 기존 repository를 복제하여 새로운 repository를 만든다.
git clone --mirror {old_repository_url}
cd {old_repository_folder}.git
git remote set-url --push origin {new_repository_url}
git push --mirror
2. 새로운 repository를 clone하여 일반적인 방식으로 사용한다.
git clone {new_repository_url}
git remote add {name_you_want} {new_repository_url}
e.g. git remote add origin https://github.com/usrname/repositoryname.git
'git' 카테고리의 다른 글
linux 특정 폴더에서 git 사용하기 (0) | 2022.09.30 |
---|