Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

ssh key git

Generate SSH Key:
$ ssh-keygen -t rsa -C "email@example.com"

Add public key to git:
$ cat ~/.ssh/id_rsa.pub
- Copy all ouput
- Open web browser and paste the output on the client settings you use.

Start SSH agent:
$ eval "$(ssh-agent -s)"

Add private key to SSH agent:
$ ssh-add ~/.ssh/id_rsa
Comment

git ssh key linux

#SSH key for github.com
# Linux should not be using sudo commands 

Generate SSH Key:
$ ssh-keygen -t rsa -C "email@example.com"

Add public key to git:
$ cat ~/.ssh/id_rsa.pub
- Copy all ouput
- Open web browser and paste the output on the client settings you use.

Start SSH agent:
$ eval "$(ssh-agent -s)"

Add private key to SSH agent:
$ ssh-add ~/.ssh/id_rsa

SSH to GitHub
$ ssh -T git@github.com
- With debug ssh -vT git@github.com
#If success you can start using
Comment

PREVIOUS NEXT
Code Example
Shell :: gpg generate key 
Shell :: git bash new repository 
Shell :: clone repo with personal access token 
Shell :: extract numners from string linux 
Shell :: http-server npm 
Shell :: list directories recursively powershell 
Shell :: how to manage icloud drive in terminal 
Shell :: update git repo local 
Shell :: cmd windows download file 
Shell :: how to install open media vault on raspberry pi 
Shell :: start grafana server 
Shell :: batch directory 
Shell :: bash grep only return first match 
Shell :: docker compsoe ubuntu 
Shell :: interface graphique sur python 
Shell :: transfer files to cluster 
Shell :: android studio (not installed) windows 
Shell :: install system images sdkmanager 
Shell :: completely uninstall apache2 
Shell :: wsl unregister 
Shell :: wsl windows 
Shell :: ssh-keygen 
Shell :: rsync port ssh 
Shell :: stash untracked files 
Shell :: install node 16.15.0 mac cmd 
Shell :: powershell convert string to int 
Shell :: generating ssh key 
Shell :: see installed packages pacman 
Shell :: how to install cmatrix 
Shell :: check jdk version 
ADD CONTENT
Topic
Content
Source link
Name
6+7 =