#1. bitbucketでリポジトリ作成
#2. bitbucketのリモートリポジトリとローカルリポジトリを接続
$ git remote add origin git@bitbucket.xxx/xxx.git
$ git push -u origin master
The authenticity of host 'bitbucket.org (xxx)' can't be established.
RSA key fingerprint is xxxxxx.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'bitbucket.org,xxx' (RSA) to the list of known hosts.
git@bitbucket.org: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
[問題]
bitbucketに追加した秘密鍵がサーバーには登録されてなかったためサーバー経由で接続時に権限がないと怒られる
[解決策]
$ ssh-add ~/.ssh/id_rsa
$ ssh -A root@xxxx
#3. ローカルリポジトリ(サーバーでない)にクローン
$ git clone git@bitbucket.org:xxx/xxx.git
#etc.
git commitの時、ubuntuサーバーだったためエディタがnanoに設定されていたのでviに設定
$ git config --global core.editor "vi"