This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-agent -s #start the agent | |
eval `ssh-agent -s` #or this to start | |
ssh-add -K ~/.ssh/id_rsa #add | |
ssh-add -l #list identities | |
ssh -vT git@github.com | |
ssh-add -D #remove existing identities | |
ssh-agent #copy the lines & run them | |
ssh-add #uses the output from above | |
ssh-agent -k #kill the agent | |
ps -ef | grep ssh-agent |
No comments:
Post a Comment