Home git repository를 bitbucket에서 github로 옮기는 방법
Post
Cancel

git repository를 bitbucket에서 github로 옮기는 방법

  1. Make a bare mirrored clone of the repository
    1
    2
    3
    
    git clone --mirror [bitbucket URL]
    cd repository-to-mirror.git 
    git remote set-url --push origin [github URL]
    
  2. Set the push location to your mirror
    1
    
    git push --mirror 
    
This post is licensed under CC BY 4.0 by the author.

Trending Tags