sshkey

· Development
1. 사용자 등록, ssh키 발급 git config --global user.name "name" git config --global user.email "email@hello.com" 다음과 같은 명령어로 user의 이름과 eamil을 등록할 수 있다. 등록 후 git config --list 를 통해서 user.name과 user.email이 잘 등록되었는지 확인해준다. 이후 ssh키를 등록하는 작업을 진행해준다. ssh키를 등록하면 암호화된 코드로 이 컴퓨터와는 별도의 비밀번호 없이 git을 연결할 수 있다. 먼저 mkdir ~/.ssh 로 ssh 폴더를 만들어준다. cd ~/.ssh cd 명령어로 ssh 폴더에서 작업하도록 이동한다. ssh-keygen -t ed25519 -C "email@he..
HwanewKing
'sshkey' 태그의 글 목록