티스토리 뷰

dev

git 저장소 이동(bitbucket to github)

IT's me 2019. 7. 20. 18:15

github.com

일전에 bitbucket에 있던 저장소를 github에 옮기기 위해 자료를 검색해보고 이곳에 남긴다. 우선 방법은 github에 잘 소개되어있다. 

 

https://help.github.com/en/articles/duplicating-a-repository

 

Duplicating a repository - GitHub Help

Duplicating a repository Mac Windows Linux All To duplicate a repository without forking it, you can run a special clone command, then mirror-push to the new repository. Before you can duplicate a repository and push to your new copy, or mirror, of the rep

help.github.com

이 작업을 할때는 윈도우로 했고, 윈도우와 맥의 방법이 동일한걸 확인했다. 

 

Mirroring a repository

  1. Open Git Bash.

  2. Create a bare clone of the repository.

    $ git clone --bare https://github.com/exampleuser/old-repository.git
  3. Mirror-push to the new repository.

    $ cd old-repository.git $ git push --mirror https://github.com/exampleuser/new-repository.git
  4. Remove the temporary local repository you created in step 1.

    $ cd .. $ rm -rf old-repository.git

이렇게 하면 된다고 하는데 직접 해보니 잘 된다. 아주 쉽게~

 

중간에 permission 에러가 나서 좀 찾아봤었는데 윈도우에서 자격 증명 관리자에서 다른 계정으로 로그인이 되어있어서 자격증명을 제어판에서 삭제해주고 다시 로그인하여 푸시했더니 이동이 잘 된것을 확인했다. 

 

저장소 이동이 잘 되었다. 허접하게 만들었지만 한때 애정을 가지고 만들었던 것 만큼 가지고 가줘야겠다. 그때 개발했던 추억이 있으니까~ 


댓글
최근에 올라온 글
최근에 달린 댓글