私は2つのBitbucketアカウントを持っています。 1つはオフィス用で、もう1つは個人用です。今私はまた、これらのアカウントのための2つのSSHキーを作成し、キーを追加しましたが、私は私の個人的なアカウントにアクセスすることはできないようです。2つの異なるBitbucketアカウントでのBitbucketアクセスエラー
私はgit push -u origin develop
をしようとすると、私はこのエラーを取得:
1 Host bitbucket.org
2 User git
3 Hostname bitbucket.org
4 IdentityFile ~/.ssh/id_rsa_bitbucket
5 TCPKeepAlive yes
6 IdentitiesOnly yes
7
8 Host bitbucket.org
9 User git
10 Hostname bitbucket.org
11 IdentityFile ~/.ssh/id_rsa
12 TCPKeepAlive yes
13 IdentitiesOnly yes
最初のものは私のオフィスのためのものであり、第二1は私の個人的なアカウントのためです:
repository access denied.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
これは私の.ssh/config
ファイルです。どのように私はこの問題を解決できますか?
残念ながら、これもうまくいきませんでした:(しかし、私は別のアプローチでそれを動作させました。別の答えで説明します。 –