並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 7 件 / 7件

新着順 人気順

"deploy keys"の検索結果1 - 7 件 / 7件

  • Read-only deploy keys

    EngineeringRead-only deploy keysYou can now create deploy keys with read-only access. A deploy key is an SSH key that is stored on your server and grants access to a single GitHub repository.… You can now create deploy keys with read-only access. A deploy key is an SSH key that is stored on your server and grants access to a single GitHub repository. They are often used to clone repositories durin

      Read-only deploy keys
    • Managing deploy keys - GitHub Docs

      You can manage SSH keys on your servers when automating deployment scripts using SSH agent forwarding, HTTPS with OAuth tokens, deploy keys, or machine users. SSH agent forwarding In many cases, especially in the beginning of a project, SSH agent forwarding is the quickest and simplest method to use. Agent forwarding uses the same SSH keys that your local development computer uses. Pros of SSH age

        Managing deploy keys - GitHub Docs
      • 同じサーバで、複数のGitHubリポジトリにDeploy keysを登録する - Qiita

        これで2つの公開鍵が生成されます。repo_a.pubとrepo_b.pubですね。これらをGitHubのリポジトリDeploy keysに登録します。 SSH接続先の設定をする 生成した公開鍵をそれぞれ使い分けたいので、適当にホスト名を決めて設定をします。 Host github-repo-a User git Port 22 HostName github.com IdentityFile ~/.ssh/repo_a TCPKeepAlive yes IdentitiesOnly yes Host github-repo-b User git Port 22 HostName github.com IdentityFile ~/.ssh/repo_b TCPKeepAlive yes IdentitiesOnly yes

          同じサーバで、複数のGitHubリポジトリにDeploy keysを登録する - Qiita
        • Managing deploy keys - GitHub Docs

          You can manage SSH keys on your servers when automating deployment scripts using SSH agent forwarding, HTTPS with OAuth tokens, deploy keys, or machine users. SSH agent forwarding In many cases, especially in the beginning of a project, SSH agent forwarding is the quickest and simplest method to use. Agent forwarding uses the same SSH keys that your local development computer uses. Pros of SSH age

            Managing deploy keys - GitHub Docs
          • GithubのDeploy Keysを登録してパスワードなしでアクセスする - Qiita

            EC2 に構築したサーバーからGithubにアクセスしてgit clone してビルド&デプロイがしたい。 自動化する仕組みは色々あるけれど、今回は単純に自作のシェルを叩くだけ。 そのとき発生するのがパスワード問題。シェルに組み込んでおいたり、どこかのファイルに保存したりすればできるのだが、パスワードを平で保存するのはよろしくない。 Github に公開鍵を登録して SSH でアクセスすることができるので試してみる。 鍵をつくる EC2 に構築したサーバーにログインして、以下を実行する。 Generating public/private rsa key pair. Enter file in which to save the key (/home/hoge/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter s

              GithubのDeploy Keysを登録してパスワードなしでアクセスする - Qiita
            • Github の Deploy Keys の公開鍵のメモ - @banyan's blog

              Github を会社で使っています。とても快適です。 Github を会社で使えますよー、というのは求人条件とかに書いてもいいと思う。 それはさておき、今は Business Plans の Bronze の Plan を使っています。 Bronze Plan では 10個の Private Repository を作成することができますが、 そのひとつのリポジトリに対して、デプロイキー (公開鍵) を設定することができますが、 Github は公開鍵は全体で一意のものしか登録ができません。 したがって、リポジトリAを例えば CI サーバから取得するみたいな時に、 CI サーバの鍵を登録してしまうと、リポジトリBには同じ鍵を登録することができません。 もっといい方法があるかもしれませんが、今はデプロイだけをするユーザを新規作成して、 そのユーザを organization に追加して (P

              • Configuring multiple private SSH deploy keys in Jenkins for GitHub.com — Firmhouse Blog

                We are setting up our Jenkins infrastructure for our hosted automated testing product for Rails, Ship Happy and I was struggling with using GitHub deploy keys in Jenkins. The problem is that the Jenkins server runs under the jenkins user and all git+ssh connections to GitHub are executed using its private key. And this would mean that you'd need to add this private key to one account that has acce

                1