저장소 통채로 복사하기 (bit-bucket to GitHub)
git clone --mirror: to clone every references (commit, tags, branches)
git push --mirror: to push everything
git clone --mirror https://bitbucket.org/exampleuser/repository-to-mirror.git
# Make a bare mirrored clone of the repository
cd repository-to-mirror.git
git remote set-url --push origin https://github.com/exampleuser/mirrored
# Set the push location to your mirror
git push --mirror
완전이 제거하고 이동 시키는 방법
// Reference: http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/
// See also: http://www.paulund.co.uk/change-url-of-git-repository
$ cd $HOME/Code/repo-directory
$ git remote rename origin bitbucket
$ git remote add origin https://github.com/mandiwise/awesome-new-repo.git
$ git push origin master
$ git remote rm bitbucket
가장 간단한 방법은 아래와 같이 Github 기능을 이용하는 것이다.
1) Create a new empty repository in GitHub (without readme or licesne, you can add them before) and the following screen will show
2) Inside to import code option you paste your bitbucket URL's repo
'Computer Science > Git' 카테고리의 다른 글
Github Page로 개인 홈페이지 제작, Private Git 얻기 (2) | 2016.07.03 |
---|---|
Android Studio Project gitignore 리스트 (0) | 2016.07.02 |
Git: 두개의 Commit 사이에서 변경된 코드 수 알기 (0) | 2015.01.18 |
원격 저장소와 동기화 (0) | 2014.05.30 |
GIt의 모든건(7) 원격 저장소를 이용하여 작업하기 (0) | 2012.06.17 |