bitbucketをubuntu上で設定
Mar 11, 2012AD:
bitbucketを使ってソースは管理しているのですが、下記のようにubuntuで設定しました。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
$ pwd $ home/hoge $ ssh-keygen Generating public/private rsa key pair. Enter file in which to save the key (/home/hoge/.ssh/id_rsa): .ssh/bitbucket Enter passphrase (empty for no passphrase): パスワードを入力 Enter same passphrase again: パスワードを入力 Your identification has been saved in /home/hoge/.ssh/bitbucket. Your public key has been saved in /home/hoge/.ssh/bitbucket.pub. $ chmod 600 .ssh/bitbucket.pub $ sudo vi .ssh/config Host bitbucket.org Compression yes HostName bitbucket.org User hg IdentityFile ~/.ssh/bitbucket.pub |
上記ができたら、id_rsa.pubを下記のページからあげて認証は終了
https://bitbucket.org/account/#ssh-keys
Bad owner or permissions
1 2 3 |
$ git clone git@bitbucket.org:hoge/test.git Bad owner or permissions on /home/hoge/.ssh/config fatal: The remote end hung up unexpectedly |
下記のようなエラーがでました。
sshの設定によりますが、パーミッションの設定を変更で解決しました。
1 |
$ chmod 600 /home/hoge/.ssh/config |
AD:
No Comments, Comment or Ping
Reply to “bitbucketをubuntu上で設定”
Warning: Undefined variable $user_ID in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/themes/grid_focus_public_mizo/comments.php on line 66
You must be logged in to post a comment.