About 8,690,000 results
Open links in new tab
  1. How do I sign git commits using my existing ssh key

    Nov 15, 2021 · Update Aug. 2022: SSH commit verification now supported GitHub now supports SSH commit verification, so you can sign commits and tags locally using a self-generated SSH public key, …

  2. Push to GitHub without a password using ssh-key

    Apr 17, 2020 · Add your SSH private key to the ssh-agent and store your passphrase in the keychain. If you created your key with a different name, or if you are adding an existing key that has a different …

  3. How to use SSH to run a local shell script on a remote machine?

    1450 I have to run a local shell script (windows/Linux) on a remote machine. I have SSH configured on both machine A and B. My script is on machine A which will run some of my code on a remote …

  4. How to configure command line git to use ssh key

    May 8, 2014 · Assuming that you have used ssh-keygen to generate a key pair and uploaded the public key in the appropriate place in your github account, you should be able to set remote to use the url …

  5. How do I add an SSH key in gitlab? - Stack Overflow

    Mar 10, 2016 · Here is what my dashboard looks like: Not really sure where to add an SSH key. Anyone have any idea?

  6. Github actions - how to deploy to remote server using SSH

    Mar 1, 2020 · Github actions - how to deploy to remote server using SSH Asked 5 years, 9 months ago Modified 8 months ago Viewed 94k times

  7. Using SSH keys inside docker container

    Aug 9, 2013 · Update: If you're using Docker 1.13 and have experimental features on you can append --squash to the build command which will merge the layers, removing the SSH keys and hiding them …

  8. How to download a file from my server using SSH (using PuTTY on …

    Mar 2, 2014 · How to download a file from my server using SSH (using PuTTY on Windows) [closed] Asked 11 years, 10 months ago Modified 8 months ago Viewed 509k times

  9. How do I copy a folder from remote to local using scp?

    The premise of the question is incorrect. The idea is, once logged into ssh, how to move files from the logged-in machine back to the client that is logged in. However, scp is not aware of nor can it use the …

  10. How to execute a remote command over ssh with arguments?

    Aug 29, 2013 · 21 Solution: you want to be able connect to machine remotely using ssh protocol and trigger/run some actions outside. on ssh use a -t flag, from documentation: -t Force pseudo-terminal …