Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

github push use ssh

# change the origin remote from https to ssh

git remote set-url origin git@github.com:<Username>/<Project>.git
Comment

add ssh to github

# CREATE SSH
1. ssh-keygen
2. cd ~/.ssh
3. cat id_rsa.pub
4. copy key 

# CONNECT TO GITHUB
1. settings
2. SSH and GPG keys
3. SSH keys -> new SSH key
Comment

add ssh keys to github

1. ssh-keygen -o -t rsa -C "your_email@example.com"
2. Press return for each option
3. cat ~/.ssh/id_rsa.pub
4. Copy the entire cat's output on "Settings - SSH and GPG keys - New SSH key" on GitHub
Comment

add ssh key to github

ssh-keygen -t ed25519 -C "your_email@example.com"
Comment

adding ssh in github

$ clip < ~/.ssh/rsa.pub
Comment

add ssh to github

$ clip < ~/.ssh/id_ed25519.pub
# Copies the contents of the id_ed25519.pub file to your clipboard
Comment

set up ssh for github

ssh-keygen -b 2048 -t rsa       // generate the keys 

ssh-agent -s                  // start the aggent 

ssh-add ~/.ssh/id_rsa         // add private key to ssh
Comment

how to add ssh key to github

ssh-keygen -t rsa -C "@gmail.com"
Comment

add ssh key to github

> Enter a file in which to save the key (/c/Users/you/.ssh/id_rsa):[Press enter]
Comment

add ssh key to github

> Generating public/private rsa key pair.
Comment

github how to add ssh key

Host *
  AddKeysToAgent yes
  UseKeychain yes
  IdentityFile ~/.ssh/id_rsa
Comment

PREVIOUS NEXT
Code Example
Shell :: install mpdf laravel 
Shell :: git clone syntax 
Shell :: add text with terminal 
Shell :: linux alias 
Shell :: pm2 process disappears after reboot 
Shell :: enable remote desktop powershell server 2019 
Shell :: open files from terminal linux 
Shell :: openssl serial number 
Shell :: if there is a string in a file batch 
Shell :: git push existing code to new repository 
Shell :: sublime text editor download for linux 
Shell :: stacer download ubuntu 
Shell :: powershell get arguments 
Shell :: how to add font in ubuntu 
Shell :: how to check pyqt version 
Shell :: sudo windows 
Shell :: linux command to update nodejs 
Shell :: list files of type txt from cmd 
Shell :: How to list manually installed packages in ubuntu 
Shell :: docker-compose logs path 
Shell :: install serverless framework 
Shell :: Flutter Git-Chrome-OS 
Shell :: linux groups 
Shell :: how to start ngrok server 
Shell :: how to execute a bash script in terminal 
Shell :: jupyter show digits 
Shell :: pull a specific branch from github 
Shell :: github fork my own repo 
Shell :: cant-push-to-github-because-of-large-file-which-i-already-deleted 
Shell :: git clone single branch 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =