일전에 bitbucket에 있던 저장소를 github에 옮기기 위해 자료를 검색해보고 이곳에 남긴다. 우선 방법은 github에 잘 소개되어있다.
https://help.github.com/en/articles/duplicating-a-repository
이 작업을 할때는 윈도우로 했고, 윈도우와 맥의 방법이 동일한걸 확인했다.
Mirroring a repository
-
Open Git Bash.
-
Create a bare clone of the repository.
$ git clone --bare https://github.com/exampleuser/old-repository.git
-
Mirror-push to the new repository.
$ cd old-repository.git $ git push --mirror https://github.com/exampleuser/new-repository.git
-
Remove the temporary local repository you created in step 1.
$ cd .. $ rm -rf old-repository.git
이렇게 하면 된다고 하는데 직접 해보니 잘 된다. 아주 쉽게~
중간에 permission 에러가 나서 좀 찾아봤었는데 윈도우에서 자격 증명 관리자에서 다른 계정으로 로그인이 되어있어서 자격증명을 제어판에서 삭제해주고 다시 로그인하여 푸시했더니 이동이 잘 된것을 확인했다.
저장소 이동이 잘 되었다. 허접하게 만들었지만 한때 애정을 가지고 만들었던 것 만큼 가지고 가줘야겠다. 그때 개발했던 추억이 있으니까~
'dev' 카테고리의 다른 글
웹 개발자 로드맵 2019 버전 (0) | 2019.08.04 |
---|---|
SKT의 깃헙 어뷰징 사태에 대하여(github abusing) (0) | 2019.07.31 |
CORS 처리 시 options는 왜 부르는거지?(Simple, Pre-flight) (0) | 2019.07.30 |
vue-router 없이 뒤로가기(Go back without vue-router) (0) | 2019.07.21 |
git에서 amend와 signed off는 무슨 옵션일까? (0) | 2019.07.20 |
atom 안 열릴 때 ( atom not opening ) (0) | 2019.07.12 |
개발자는 공부할 것도 산더미. (0) | 2019.07.05 |
System.arraycopy는 빠르다. Arrays.copyOf와는? (0) | 2019.07.03 |