タグ

2010年3月31日のブックマーク (4件)

  • サービス終了のお知らせ

    サービス終了のお知らせ いつもYahoo! JAPANのサービスをご利用いただき誠にありがとうございます。 お客様がアクセスされたサービスは日までにサービスを終了いたしました。 今後ともYahoo! JAPANのサービスをご愛顧くださいますよう、よろしくお願いいたします。

    hirafoo
    hirafoo 2010/03/31
  • Git SCM Wiki

    OBSOLETE CONTENTThis wiki has been archived and the content is no longer updated. Please visit git-scm.com/doc for up-to-date documentation. Git Wiki Homepage Welcome to the Git wiki web site. This wiki is a community effort to provide an accurate source of information for all things related to Git. Make sure to visit the Git website (http://git-scm.com) for current updates and information. The Gi

    hirafoo
    hirafoo 2010/03/31
  • ssh (前編)

    まず, サーバーは自身の公開かぎ(1)をクライアントに対して送信します。 クライアントは接続相手サーバーごとの公開かぎを保存しています。 もしサーバーの公開かぎ(1)が, 以前同じサーバーから送られてきた公開かぎと一致しなかった場合は, 図 4 のような警告をクライアントがユーザーに対して表示します (OpenSSH の場合。以下,同様)。 すなわち, だれかがセッションのハイジャック*15 をしている可能性がある, という警告です。 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ IT IS P

    hirafoo
    hirafoo 2010/03/31
    サーバーのかぎの指紋(fingerprint)は, サーバー上で「ssh-keygen -l -f /usr/local/etc/ssh_host_key.pub」 などと実行することにより知ることができます。
  • git over ssh with options

    gitにsshのオプションを渡すには、sshをラップしたスクリプトを用意して GIT_SSHで指定してやればいいらしい。 例えば、johndがjdoeというユーザ名でid_rsa_jdoeという鍵を使って loginしたい場合の準備: % man ssh % $EDITOR git_ssh_jdoe.sh % cat git_ssh_jdoe.sh #!/bin/sh # git_ssh_jdoe.sh exec ssh -o User=jdoe -o IdentityFile=/home/johnd/.ssh/id_rsa_jdoe "$@" % % chmod +x git_ssh_jdoe.sh 使うときはGIT_SSHを指定してgitを実行する。 % GIT_SSH=git_ssh_jdoe.sh git fetch Enter passphrase for key '/home/

    hirafoo
    hirafoo 2010/03/31
    GIT_SSH