0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

レポジトリをBitbucketからGithubに移行

Posted at

はじめに

Githubにレポジトリを統一することにしたので、移行する手順をメモしようと思います。

手順

1. BitbucketのレポジトリをGitHubにインポート

GitHubのインポートページからBitbucketにあるレポジトリURLを貼り付けます。

スクリーンショット 2019-02-26 17.31.54.png

Your old repository's clone URLにBitbucketのレポジトリURLを入力します。
Your new repozitory detailsにGithubでのリポジトリ名を入力します。
PublicかPrivateかを選択します。

2. ローカルのリモートリポジトリのURLを変更

ローカルでのリモートURLはBitbucketを向いたままなので、これをGitHubに向くように変更します。

# まずは確認
$ git remote -v
origin  https://XXXXXXXX@bitbucket.org/XXXXXXXX/レポジトリ名.git (fetch)
origin  https://XXXXXXXX@bitbucket.org/XXXXXXXX/レポジトリ名.git (push)

# GitHubに向ける(SSH設定済み)
$ git remote set-url origin git@github.com:XXXXXXXX/新レポジトリ名.git

# 再確認
$ git remote -v
origin  git@github.com:XXXXXXXX/新レポジトリ名.git (fetch)
origin  git@github.com:XXXXXXXX/新レポジトリ名.git (push)

ばっちりですね!

0
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?