76

pullGithub から 行うと、この警告メッセージが表示されます。

    MYPC:/Rails$ git pull origin master
    Warning: Permanently added the RSA host key for IP address '#{Some IP address}' to the list of known hosts.
    From github.com:Example/Demo
     * branch            master     -> FETCH_HEAD
    Already up-to-date.

既知のホストに追加されている IP アドレスを知りたいだけです。

4

8 に答える 8

82

SSH プロトコル経由でリポジトリにアクセスしている場合、クライアントが github.com の新しい IP アドレスに接続するたびに警告メッセージが表示されます。警告の IP アドレスが IP アドレスの範囲内にある限り、心配する必要はありません。具体的には、今回追加される新しいアドレスは から の範囲です192.30.252.0 to 192.30.255.255。警告メッセージは次のようになります。

Warning: Permanently added the RSA host key for IP address '$IP' to the list of 

https://github.com/blog/1606-ip-address-changes

于 2013-09-10T06:13:35.233 に答える