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 :: download nodejs ubuntu linux 
Shell :: linux delete user password 
Shell :: git display current head 
Shell :: untar gz file ubuntu 
Shell :: vim terminal scrollback 
Shell :: git refusing to merge unrelated histories 
Shell :: check network interface linux 
Shell :: reinit git-submodules 
Shell :: installing react router dom with yarn 
Shell :: bash find full path 
Shell :: run rust book on terminal 
Shell :: remove permission denied file folder linux 
Shell :: linux unzip tar.gz 
Shell :: install jekyll 
Shell :: ecto migration 
Shell :: conda install jupyter notebook 
Shell :: open finder from terminal 
Shell :: debian install postgresql 
Shell :: heroku rebuild without push 
Shell :: how to end localhost 
Shell :: vim wnd of file 
Shell :: how to install cuckoo sandbox 
Shell :: linux file path 
Shell :: 7zip command line 
Shell :: how to print specific line from a file in bash 
Shell :: change commit author 
Shell :: git reset hard for remote 
Shell :: ubuntu cant find packages terminal 
Shell :: 10 digit validation in jquery 
Shell :: docker-compose update changes 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =