2011年10月8日土曜日

bitbucketに既存のgitリポジトリを移行

先日bitbucketがGit対応しました。
bitbucketは無料でPrivateリポジトリが無制限に作れるという かなりの太っ腹です!
さっそく一部のソースをbitbucketに移行しましたので、 手順をメモしておきます。

bitbucketにprivateリポジトリの作成

  1. Repositoriesからcreate repositoryを選択します。
  2. Create new repositoryを選択し、project名とその他の項目を入力し、Create Repositoryをクリックします。※Privateの選択を忘れないようにしましょう。

既存のgitリポジトリ移行

$cd /home/gituser/project/
$git remote add origin https://hogehoge@bitbucket.org/hogehoge/project.git
$git push origin master
password:
#パスワードが要求されるので入力します。
※追加するremoteのパスには、以下の画像を参照してください。
これでbitbucketのWebでいろいろ見れます!
gitwebより見やすいと思うのでオススメです!
※すでにremoteリポジトリにoriginがある場合は、付ける名前を変更するなり、今のoriginをrmしてbitbucketの方をoriginにするなりしましょう!
 以下の例では、originを削除して、bitbucketの方をoriginとしています。
$git remote
origin
$git remote rm origin
$git remote add origin https://hogehoge@bitbucket.org/hogehoge/project.git
$git push origin master

0 件のコメント: