1. ホーム
  2. github

[解決済み] GitHub SSH Config: "Bad configuration option: IdentifyFile" [終了しました]。

2023-04-11 06:01:29

質問

私は複数のSSHアカウント(特にgithub.com用)のための.ssh/configファイルを作成しようとしています。 私はいくつかのチュートリアルとgithubヘルプのウォークスルーを試しましたが、何もうまくいかないようです。

私は id_rsa_testid_rsa_test.pub . をアップロードしました。 id_rsa_test.pub をgithubにアップロードしました。

その後、私は ~/.ssh/config というファイルを作成しました。

# github account
Host github.com-test github.com
    Hostname github.com
    User git 
    IdentifyFile ~/.ssh/id_rsa_test

# github account
Host github.com-test github.com
    Hostname github.com
    User git 
    IdentifyFile ~/.ssh/id_rsa_test.pub

次に、いくつかのコマンドを試してみます。

git clone git@github-test:username/my_project.git

git push

...毎回、以下のようなエラーが発生します。

/home/username/.ssh/config: line 5: Bad configuration option: IdentifyFile
/home/username/.ssh/config: terminating, 1 bad configuration options
fatal: The remote end hung up unexpectedly

何か提案はありますか?

どのように解決するのですか?

それは t yFileに't'をつけたもので、Identiではありません。 f yFile です。