블로그 옮겼습니다
Github의 특정 저장소를 모든 커밋 히스토리와 함께 다른 저장소로 옮기기 본문
출처 : https://gist.github.com/niksumeiko/8972566
Moving git repository and all its branches, tags to a new remote repository keeping commits history
git clone --mirror <url_of_old_repo>
cd <name_of_old_repo>
git remote add new-origin <url_of_new_repo>
git push new-origin --mirror
'Development > Git' 카테고리의 다른 글
Remote 저장소에 이미 올린 데이터 gitignore에 추가한뒤 Remote 저장소에서 삭제되게하기 (0) | 2018.05.20 |
---|---|
Git 리모트 저장소 보기, url 변경하기, push하기, 브랜치명 바꿔올리기 (0) | 2018.05.19 |
Git 커맨드라인에서 머지할 때 Conflict 를 Resolve 하기 (0) | 2018.05.04 |
커맨드라인에서 A 저장소의 a 브랜치에, B 저장소의 b 브랜치를 머지하기 (0) | 2018.05.04 |
Comments